| 102 | */ |
| 103 | |
| 104 | static inline int connAccept(connection *conn, ConnectionCallbackFunc accept_handler) { |
| 105 | return conn->type->accept(conn, accept_handler); |
| 106 | } |
| 107 | |
| 108 | /* Establish a connection. The connect_handler will be called when the connection |
| 109 | * is established, or if an error has occurred. |
no test coverage detected