osrm-backend/include/server/http/request.hpp
2022-12-20 18:00:11 +01:00

22 lines
333 B
C++

#ifndef REQUEST_HPP
#define REQUEST_HPP
#include <boost/asio.hpp>
#include <string>
namespace osrm::server::http
{
struct request
{
std::string uri;
std::string referrer;
std::string agent;
std::string connection;
boost::asio::ip::address endpoint;
};
} // namespace osrm::server::http
#endif // REQUEST_HPP