Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dnetworking.c2045 if (c->flags & CLIENT_MASTER) return CLIENT_TYPE_MASTER; in getClientType()
2057 else if (!strcasecmp(name,"master")) return CLIENT_TYPE_MASTER; in getClientTypeByName()
2066 case CLIENT_TYPE_MASTER: return "master"; in getClientTypeName()
2084 if (class == CLIENT_TYPE_MASTER) class = CLIENT_TYPE_NORMAL; in checkClientOutputBufferLimits()
H A Dconfig.c720 if (class == -1 || class == CLIENT_TYPE_MASTER) { in loadServerConfigFromString()
1026 if (class == -1 || class == CLIENT_TYPE_MASTER) {
H A Dserver.h281 #define CLIENT_TYPE_MASTER 3 /* Master. */ macro