Home
last modified time | relevance | path

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

/f-stack/app/redis-5.0.5/src/
H A Dnetworking.c865 CLIENT_CLOSE_ASAP| in freeClient()
932 if (c->flags & CLIENT_CLOSE_ASAP) { in freeClient()
952 if (c->flags & CLIENT_CLOSE_ASAP || c->flags & CLIENT_LUA) return; in freeClientAsync()
953 c->flags |= CLIENT_CLOSE_ASAP; in freeClientAsync()
962 c->flags &= ~CLIENT_CLOSE_ASAP; in freeClientsInAsyncFreeQueue()
1446 if (c->flags & (CLIENT_CLOSE_AFTER_REPLY|CLIENT_CLOSE_ASAP)) break; in processInputBuffer()
1664 if (client->flags & CLIENT_CLOSE_ASAP) *p++ = 'A'; in catClientInfoString()
2125 if (c->reply_bytes == 0 || c->flags & CLIENT_CLOSE_ASAP) return; in asyncCloseClientOnOutputBufferLimitReached()
H A Dreplication.c2250 server.master->flags &= ~(CLIENT_CLOSE_AFTER_REPLY|CLIENT_CLOSE_ASAP); in replicationResurrectCachedMaster()
H A Dserver.h240 #define CLIENT_CLOSE_ASAP (1<<10)/* Close this client ASAP */ macro