Home
last modified time | relevance | path

Searched refs:CLUSTER_NODE_SLAVE (Results 1 – 3 of 3) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dcluster.h51 #define CLUSTER_NODE_SLAVE 2 /* The node is a slave */ macro
63 #define nodeIsSlave(n) ((n)->flags & CLUSTER_NODE_SLAVE)
H A Dcluster.c195 n->flags |= CLUSTER_NODE_SLAVE; in clusterLoadConfig()
1510 n->flags &= ~CLUSTER_NODE_SLAVE; in clusterSetNodeAsMaster()
1820 link->node->flags |= flags&(CLUSTER_NODE_MASTER|CLUSTER_NODE_SLAVE); in clusterProcessPacket()
1899 sender->flags |= CLUSTER_NODE_SLAVE; in clusterProcessPacket()
3938 myself->flags |= CLUSTER_NODE_SLAVE; in clusterSetMaster()
3962 {CLUSTER_NODE_SLAVE, "slave,"},
H A Dmodule.c4235 if (node->flags & CLUSTER_NODE_SLAVE) *flags |= REDISMODULE_NODE_SLAVE; in RM_GetClusterNodeInfo()