Return true if the specified client has pending reply buffers to write to * the socket. */
| 984 | /* Return true if the specified client has pending reply buffers to write to |
| 985 | * the socket. */ |
| 986 | int clientHasPendingReplies(client *c) { |
| 987 | return c->bufpos || listLength(c->reply); |
| 988 | } |
| 989 | |
| 990 | void clientAcceptHandler(connection *conn) { |
| 991 | client *c = connGetPrivateData(conn); |
no outgoing calls
no test coverage detected