| 822 | } |
| 823 | |
| 824 | int connTLSSetReadHandler(connection *conn, ConnectionCallbackFunc func) { |
| 825 | conn->read_handler = func; |
| 826 | updateSSLEvent((tls_connection *) conn); |
| 827 | return C_OK; |
| 828 | } |
| 829 | |
| 830 | static void setBlockingTimeout(tls_connection *conn, long long timeout) { |
| 831 | anetBlock(NULL, conn->c.fd); |
nothing calls this directly
no test coverage detected