Home
last modified time | relevance | path

Searched refs:reqtype (Results 1 – 2 of 2) sorted by relevance

/redis-3.2.3/src/
H A Dnetworking.c92 c->reqtype = 0; in createClient()
1029 c->reqtype = 0; in resetClient()
1276 if (!c->reqtype) { in processInputBuffer()
1278 c->reqtype = PROTO_REQ_MULTIBULK; in processInputBuffer()
1280 c->reqtype = PROTO_REQ_INLINE; in processInputBuffer()
1284 if (c->reqtype == PROTO_REQ_INLINE) { in processInputBuffer()
1286 } else if (c->reqtype == PROTO_REQ_MULTIBULK) { in processInputBuffer()
1321 if (c->reqtype == PROTO_REQ_MULTIBULK && c->multibulklen && c->bulklen != -1 in readQueryFromClient()
H A Dserver.h576 int reqtype; /* Request protocol type: PROTO_REQ_* */ member