#pragma once #include "server.h" #include #include #include namespace beast = boost::beast; // from namespace http = beast::http; // from typedef http::request request_type; typedef http::response response_type; namespace response { response_type generate_response(request_type& req, Server& server); // Get host:port/path e.g. reichwein.it:6543/path1 std::string get_websocket_address(request_type& req, Server& server); } // namespace