From e117fedddc856a1376bafac3f62aee8823b763b3 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Mon, 3 Feb 2020 22:53:03 -0500 Subject: nserver/src/protocol.h: Add Record. --- nserver/src/protocol.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nserver/src/protocol.h b/nserver/src/protocol.h index 20fb24a..15a3a39 100644 --- a/nserver/src/protocol.h +++ b/nserver/src/protocol.h @@ -8,6 +8,12 @@ #include #include +typedef struct Record { + bstring key; + Stats *st; + int deleted; +} Record; + int sscreate(char *key); int ssdelete(char *key); double sssample(char *key, double s); -- cgit v1.2.3