summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nserver/src/protocol.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/nserver/src/protocol.h b/nserver/src/protocol.h
new file mode 100644
index 0000000..22355bd
--- /dev/null
+++ b/nserver/src/protocol.h
@@ -0,0 +1,14 @@
+#ifndef _protocol_h
+#define _protocol_h
+
+#include <hashmap.h>
+#include <dbg.h>
+
+int sscreate(char *key);
+int ssdelete(char *key);
+int sssample(char *key, double s);
+double ssmean(char *key);
+char *ssdump(char *key);
+
+
+#endif