From 5c9f49e2123c5df7148939a70b80cd72e4e59646 Mon Sep 17 00:00:00 2001 From: Michael Grunder Date: Tue, 19 May 2020 12:56:02 -0700 Subject: Resp3 verbatim string support (#805) Pull RESP3 verbatim string handling from Redis Fixes #802 --- read.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'read.h') diff --git a/read.h b/read.h index 6eff14c..788c401 100644 --- a/read.h +++ b/read.h @@ -56,12 +56,12 @@ #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_REPLY_VERB 14 #define REDIS_READER_MAX_BUF (1024*16) /* Default max unused reader buffer. */ -- cgit v1.2.3