HTTP server implementation
| 6058 | |
| 6059 | // HTTP server implementation |
| 6060 | inline Server::Server() |
| 6061 | : new_task_queue( |
| 6062 | [] { return new ThreadPool(CPPHTTPLIB_THREAD_POOL_COUNT); }) { |
| 6063 | #ifndef _WIN32 |
| 6064 | signal(SIGPIPE, SIG_IGN); |
| 6065 | #endif |
| 6066 | } |
| 6067 | |
| 6068 | inline Server::~Server() = default; |
| 6069 |
nothing calls this directly
no outgoing calls
no test coverage detected