MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / cbm_http_server_free

Function cbm_http_server_free

src/ui/http_server.c:1806–1812  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1804}
1805
1806void cbm_http_server_free(cbm_http_server_t *srv) {
1807 if (!srv)
1808 return;
1809 cbm_httpd_close(srv->listener);
1810 cbm_mcp_server_free(srv->mcp);
1811 free(srv);
1812}
1813
1814void cbm_http_server_stop(cbm_http_server_t *srv) {
1815 if (srv) {

Callers 4

mainFunction · 0.85
th_server_startFunction · 0.85
th_server_stopFunction · 0.85

Calls 2

cbm_httpd_closeFunction · 0.85
cbm_mcp_server_freeFunction · 0.85

Tested by 3

th_server_startFunction · 0.68
th_server_stopFunction · 0.68