Home
last modified time | relevance | path

Searched refs:CLIENT_MONITOR (Results 1 – 4 of 4) sorted by relevance

/f-stack/app/redis-5.0.5/src/
H A Dnetworking.c369 if (c->flags & (CLIENT_MASTER|CLIENT_SLAVE) && !(c->flags & CLIENT_MONITOR)) { in addReplyErrorLength()
874 if ((c->flags & CLIENT_SLAVE) && !(c->flags & CLIENT_MONITOR)) { in freeClient()
914 list *l = (c->flags & CLIENT_MONITOR) ? server.monitors : server.slaves; in freeClient()
1652 if (client->flags & CLIENT_MONITOR) in catClientInfoString()
2046 if ((c->flags & CLIENT_SLAVE) && !(c->flags & CLIENT_MONITOR)) in getClientType()
H A Dobject.c1010 if (c->flags & CLIENT_SLAVE && !(c->flags & CLIENT_MONITOR)) in getMemoryOverheadData()
H A Dserver.h231 #define CLIENT_MONITOR (1<<2) /* This client is a slave monitor, see MONITOR */ macro
H A Dserver.c3697 c->flags |= (CLIENT_SLAVE|CLIENT_MONITOR); in monitorCommand()