summaryrefslogtreecommitdiffstats
path: root/server/cdb.h
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:52:55 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:52:55 -0400
commit6ba98a9f9f48e13738d9736cba9c45b5e94f42f2 (patch)
tree86d7c281bcdbf67eb53cee064aa905e740ec5ccf /server/cdb.h
downloadnastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.tar.gz
nastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.zip
Initial import
Diffstat (limited to 'server/cdb.h')
-rw-r--r--server/cdb.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/server/cdb.h b/server/cdb.h
new file mode 100644
index 0000000..0da14df
--- /dev/null
+++ b/server/cdb.h
@@ -0,0 +1,15 @@
+/* $Id: cdb.h,v 1.11 2000/05/17 19:32:58 shmit Exp $ */
+
+#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