| 211 | } |
| 212 | |
| 213 | void cbm_httpd_conn_close(cbm_http_conn_t *c) { |
| 214 | if (!c) |
| 215 | return; |
| 216 | cbm_sock_close(c->fd); |
| 217 | free(c); |
| 218 | } |
| 219 | |
| 220 | int cbm_http_conn_status(const cbm_http_conn_t *c) { |
| 221 | return c ? c->response_status : 0; |
no outgoing calls
no test coverage detected