Skip to content

Commit ab9d398

Browse files
committed
Merge branch 'unstable' of github.com:/antirez/redis into unstable
2 parents 4740424 + d3b32ca commit ab9d398

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/cluster.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
#include <arpa/inet.h>
3838
#include <fcntl.h>
3939
#include <unistd.h>
40-
#include <sys/socket.h>
4140
#include <sys/stat.h>
4241
#include <sys/file.h>
4342
#include <math.h>

src/cluster.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ union clusterMsgData {
232232
typedef struct {
233233
char sig[4]; /* Siganture "RCmb" (Redis Cluster message bus). */
234234
uint32_t totlen; /* Total length of this message */
235-
uint16_t ver; /* Protocol version, currently set to 0. */
235+
uint16_t ver; /* Protocol version, currently set to 1. */
236236
uint16_t port; /* TCP base port number. */
237237
uint16_t type; /* Message type */
238238
uint16_t count; /* Only used for some kind of messages. */

0 commit comments

Comments
 (0)