| 149 | /* ── HTTP UI background thread ──────────────────────────────────── */ |
| 150 | |
| 151 | static void *http_thread(void *arg) { |
| 152 | cbm_http_server_t *srv = arg; |
| 153 | cbm_http_server_run(srv); |
| 154 | return NULL; |
| 155 | } |
| 156 | |
| 157 | /* ── Index callback for watcher ─────────────────────────────────── */ |
| 158 |
nothing calls this directly
no test coverage detected