| 341 | } |
| 342 | |
| 343 | static void host_http_server_stop_default(void *context, cbm_http_server_t *server) { |
| 344 | (void)context; |
| 345 | cbm_http_server_stop(server); |
| 346 | } |
| 347 | |
| 348 | static bool host_http_server_free_default(void *context, cbm_http_server_t *server) { |
| 349 | (void)context; |
nothing calls this directly
no test coverage detected