| 404 | } th_server_t; |
| 405 | |
| 406 | static void *th_server_thread(void *arg) { |
| 407 | cbm_http_server_run((cbm_http_server_t *)arg); |
| 408 | return NULL; |
| 409 | } |
| 410 | |
| 411 | static int th_server_start(th_server_t *ts) { |
| 412 | ts->srv = cbm_http_server_new(0); |
nothing calls this directly
no test coverage detected