summaryrefslogtreecommitdiffstats
path: root/nserver/src/protocol.h
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-11-14 18:51:28 -0500
committerrsiddharth <s@ricketyspace.net>2020-04-17 20:56:35 -0400
commitf7217c512e54c0991af35627ecaaba3d8b7fb9be (patch)
tree6ef0e2027af6c4469ce60b0631285472ab15ce0e /nserver/src/protocol.h
parent1993bfc6cee9f87ee50137bfe9bae49d513d7cbb (diff)
nserver: protocol.h: Add sslist.
* nserver/src/protocol.c (sslist): New function. * nserver/src/protocol.h (sslist): New function declaration. * nserver/tests/protocol_tests.c (test_sslist): Test fr sslist. (all_tests): Add test_sslist.
Diffstat (limited to 'nserver/src/protocol.h')
-rw-r--r--nserver/src/protocol.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/nserver/src/protocol.h b/nserver/src/protocol.h
index 3d357d9..921640c 100644
--- a/nserver/src/protocol.h
+++ b/nserver/src/protocol.h
@@ -1,7 +1,9 @@
#ifndef _protocol_h
#define _protocol_h
+
#include <bstrlib.h>
+#include <darray.h>
#include <hashmap.h>
#include <stats.h>
#include <dbg.h>
@@ -11,6 +13,7 @@ int ssdelete(char *key);
int sssample(char *key, double s);
double ssmean(char *key);
char *ssdump(char *key);
+char *sslist();
#endif