Write event handler. Just send data to the client. */
| 1601 | |
| 1602 | /* Write event handler. Just send data to the client. */ |
| 1603 | void sendReplyToClient(connection *conn) { |
| 1604 | client *c = connGetPrivateData(conn); |
| 1605 | writeToClient(c,1); |
| 1606 | } |
| 1607 | |
| 1608 | /* This function is called just before entering the event loop, in the hope |
| 1609 | * we can just write the replies to the client output buffer without any |
nothing calls this directly
no test coverage detected