Returns true if a read handler is registered */
| 126 | |
| 127 | /* Returns true if a read handler is registered */ |
| 128 | int connHasReadHandler(connection *conn) { |
| 129 | return conn->read_handler != NULL; |
| 130 | } |
| 131 | |
| 132 | /* Associate a private data pointer with the connection */ |
| 133 | void connSetPrivateData(connection *conn, void *data) { |
no outgoing calls
no test coverage detected