summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSalvatore Sanfilippo <antirez@gmail.com>2017-06-13 06:28:23 -0700
committerGitHub <noreply@github.com>2017-06-13 06:28:23 -0700
commitd3b32ca48d083c86ff0c20691cb790f80d5935c2 (patch)
treebb2d406b7084f3419364f6a23b4a8aa23dd217c3 /src
parent33035cad04fd26482c744e450234b3554034f9b9 (diff)
parent591dba80553ef5f629bde45df6375dc80bf1c77c (diff)
downloadredis-d3b32ca48d083c86ff0c20691cb790f80d5935c2.tar.gz
Merge pull request #4034 from amallia/patch-1
Fixed comment in clusterMsg version field
Diffstat (limited to 'src')
-rw-r--r--src/cluster.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cluster.h b/src/cluster.h
index 5e228c0f9..af85841c9 100644
--- a/src/cluster.h
+++ b/src/cluster.h
@@ -232,7 +232,7 @@ union clusterMsgData {
typedef struct {
char sig[4]; /* Siganture "RCmb" (Redis Cluster message bus). */
uint32_t totlen; /* Total length of this message */
- uint16_t ver; /* Protocol version, currently set to 0. */
+ uint16_t ver; /* Protocol version, currently set to 1. */
uint16_t port; /* TCP base port number. */
uint16_t type; /* Message type */
uint16_t count; /* Only used for some kind of messages. */