mirror of
https://github.com/fluencelabs/redis
synced 2025-03-30 22:31:03 +00:00
Merge pull request #1565 from mattsta/fix-cluster-ipv6-addr
Fix IP representation in clusterMsgDataGossip
This commit is contained in:
commit
5edc7f76ed
@ -148,7 +148,7 @@ typedef struct {
|
|||||||
char nodename[REDIS_CLUSTER_NAMELEN];
|
char nodename[REDIS_CLUSTER_NAMELEN];
|
||||||
uint32_t ping_sent;
|
uint32_t ping_sent;
|
||||||
uint32_t pong_received;
|
uint32_t pong_received;
|
||||||
char ip[16]; /* IP address last time it was seen */
|
char ip[REDIS_IP_STR_LEN]; /* IP address last time it was seen */
|
||||||
uint16_t port; /* port last time it was seen */
|
uint16_t port; /* port last time it was seen */
|
||||||
uint16_t flags;
|
uint16_t flags;
|
||||||
uint32_t notused; /* for 64 bit alignment */
|
uint32_t notused; /* for 64 bit alignment */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user