#ifndef REQUEST_HPP #define REQUEST_HPP #include #include namespace http { struct request { std::string uri; std::string referrer; std::string agent; boost::asio::ip::address endpoint; }; } // namespace http #endif // REQUEST_HPP