From 91de9c975ac66b6eaddb6de96440a282e4227447 Mon Sep 17 00:00:00 2001 From: Yossi Gottlieb Date: Sun, 4 Aug 2019 12:13:04 +0300 Subject: RESP3 support changes from Redis. This corresponds to commits d5c54f0b..bea09a7f in the redis repository. --- hiredis.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'hiredis.h') diff --git a/hiredis.h b/hiredis.h index 1ae1c0a..e5c5e19 100644 --- a/hiredis.h +++ b/hiredis.h @@ -101,8 +101,10 @@ extern "C" { typedef struct redisReply { int type; /* REDIS_REPLY_* */ long long integer; /* The integer when type is REDIS_REPLY_INTEGER */ + double dval; /* The double when type is REDIS_REPLY_DOUBLE */ size_t len; /* Length of string */ - char *str; /* Used for both REDIS_REPLY_ERROR and REDIS_REPLY_STRING */ + char *str; /* Used for REDIS_REPLY_ERROR, REDIS_REPLY_STRING + and REDIS_REPLY_DOUBLE (in additionl to dval). */ size_t elements; /* number of elements, for REDIS_REPLY_ARRAY */ struct redisReply **element; /* elements vector for REDIS_REPLY_ARRAY */ } redisReply; -- cgit v1.2.3