| 672 | } |
| 673 | |
| 674 | static void tlsEventHandler(struct aeEventLoop *el, int fd, void *clientData, int mask) { |
| 675 | UNUSED(el); |
| 676 | UNUSED(fd); |
| 677 | tls_connection *conn = clientData; |
| 678 | tlsHandleEvent(conn, mask); |
| 679 | } |
| 680 | |
| 681 | static void connTLSClose(connection *conn_) { |
| 682 | tls_connection *conn = (tls_connection *) conn_; |
nothing calls this directly
no test coverage detected