MCPcopy Create free account
hub / github.com/PABannier/bark.cpp / Server

Method Server

examples/server/httplib.h:5505–5511  ·  view source on GitHub ↗

HTTP server implementation

Source from the content-addressed store, hash-verified

5503
5504// HTTP server implementation
5505inline Server::Server()
5506 : new_task_queue(
5507 [] { return new ThreadPool(CPPHTTPLIB_THREAD_POOL_COUNT); }) {
5508#ifndef _WIN32
5509 signal(SIGPIPE, SIG_IGN);
5510#endif
5511}
5512
5513inline Server::~Server() {}
5514

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected