@brief WebServer implementation @param port the port
| 487 | ///@brief WebServer implementation |
| 488 | ///@param port the port |
| 489 | WebServer::WebServer(std::string host, int port, bool cors) : acceptor(ioc, {net::ip::make_address(host), static_cast<unsigned short>(port)}), running(false), port(port), cors(cors) {} |
| 490 | |
| 491 | ///@brief destructor |
| 492 | WebServer::~WebServer() { |
nothing calls this directly
no outgoing calls
no test coverage detected