HTTP server implementation
| 4795 | |
| 4796 | // HTTP server implementation |
| 4797 | inline Server::Server() |
| 4798 | : new_task_queue( |
| 4799 | [] { return new ThreadPool(CPPHTTPLIB_THREAD_POOL_COUNT); }), |
| 4800 | svr_sock_(INVALID_SOCKET), is_running_(false) { |
| 4801 | #ifndef _WIN32 |
| 4802 | signal(SIGPIPE, SIG_IGN); |
| 4803 | #endif |
| 4804 | } |
| 4805 | |
| 4806 | inline Server::~Server() {} |
| 4807 |
nothing calls this directly
no outgoing calls
no test coverage detected