| 811 | } |
| 812 | |
| 813 | void updateSSLEvent(tls_connection *conn) { |
| 814 | if (conn->el != serverTL->el) { |
| 815 | aePostFunction(conn->el, [conn]{ |
| 816 | updateSSLEventCore(conn); |
| 817 | }); |
| 818 | } else { |
| 819 | updateSSLEventCore(conn); |
| 820 | } |
| 821 | } |
| 822 | |
| 823 | void tlsHandleEvent(tls_connection *conn, int mask) { |
| 824 | int ret, conn_error; |
no test coverage detected