summaryrefslogtreecommitdiff
path: root/read.h
diff options
context:
space:
mode:
authorYossi Gottlieb <yossigo@gmail.com>2019-08-04 11:55:24 +0300
committerYossi Gottlieb <yossigo@gmail.com>2019-08-04 11:55:24 +0300
commita7a1886b7eaeac0265af419a3f9c0793e7098d46 (patch)
tree8fbb2bbf518d26b770d0390bebfcc042c9b047cb /read.h
parentf5f855c91239706b173e2412cea301f4a3643e2d (diff)
Initial RESP3 support [d5c54f0b].
Diffstat (limited to 'read.h')
-rw-r--r--read.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/read.h b/read.h
index 0894b78..1be3b7b 100644
--- a/read.h
+++ b/read.h
@@ -54,6 +54,14 @@
#define REDIS_REPLY_NIL 4
#define REDIS_REPLY_STATUS 5
#define REDIS_REPLY_ERROR 6
+#define REDIS_REPLY_DOUBLE 7
+#define REDIS_REPLY_BOOL 8
+#define REDIS_REPLY_VERB 9
+#define REDIS_REPLY_MAP 9
+#define REDIS_REPLY_SET 10
+#define REDIS_REPLY_ATTR 11
+#define REDIS_REPLY_PUSH 12
+#define REDIS_REPLY_BIGNUM 13
#define REDIS_READER_MAX_BUF (1024*16) /* Default max unused reader buffer. */