| 974 | } |
| 975 | |
| 976 | static void tlsEventHandler(struct aeEventLoop *el, int fd, void *clientData, int mask) { |
| 977 | UNUSED(el); |
| 978 | UNUSED(fd); |
| 979 | tls_connection *conn = (tls_connection*)clientData; |
| 980 | tlsHandleEvent(conn, mask); |
| 981 | } |
| 982 | |
| 983 | static void connTLSCloseCore(tls_connection *conn) { |
| 984 | serverAssert(conn->el == serverTL->el); |
nothing calls this directly
no test coverage detected