| 346 | } |
| 347 | |
| 348 | static bool host_http_server_free_default(void *context, cbm_http_server_t *server) { |
| 349 | (void)context; |
| 350 | return cbm_http_server_free(server); |
| 351 | } |
| 352 | |
| 353 | typedef int (*host_http_thread_create_fn)(void *context, cbm_thread_t *thread, |
| 354 | void *(*entry)(void *), void *entry_context); |
nothing calls this directly
no test coverage detected