HTTP server implementation
| 5503 | |
| 5504 | // HTTP server implementation |
| 5505 | inline 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 | |
| 5513 | inline Server::~Server() {} |
| 5514 |
nothing calls this directly
no outgoing calls
no test coverage detected