osrm-backend/include/server/http/request.hpp
2016-01-08 01:31:57 +01:00

27 lines
299 B
C++

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