summaryrefslogtreecommitdiffstats
path: root/server/cdb.h
blob: 4729e3d8f668bd5ef8aa660c4c31d8ee89ff24b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef CDB_H
#define CDB_H

#include "array.h"

int cdb_new();
int cdb_get(const char *key, int keylen, array_t *dstarr);
void cdb_periodic();

int cdb_stats(array_t *statarr);
void cdb_collate();

#endif