| 124 /* |
124 /* |
| 125 * Websocket message IO available |
125 * Websocket message IO available |
| 126 * |
126 * |
| 127 * This function is called, when client->socketfd is ready to accept |
127 * This function is called, when client->socketfd is ready to accept |
| 128 * new messages (http_client_add_message) |
128 * new messages (http_client_add_message) |
| |
129 * |
| |
130 * If the callback returns 1, the websocket connection is terminated. |
| 129 */ |
131 */ |
| 130 int (*ws_msg_ready)(HttpClient *, void *); |
132 int (*ws_msg_ready)(HttpClient *, void *); |
| 131 void *ws_msg_ready_userdata; |
133 void *ws_msg_ready_userdata; |
| 132 |
134 |
| 133 /* |
135 /* |