osrm-backend/include/server/http/request.hpp

28 lines
327 B
C++
Raw Normal View History

#ifndef REQUEST_HPP
#define REQUEST_HPP
#include <boost/asio.hpp>
#include <string>
2013-12-16 05:29:38 -05:00
2016-01-05 10:51:13 -05:00
namespace osrm
{
namespace server
{
2014-05-11 12:03:05 -04:00
namespace http
{
struct request
{
std::string uri;
std::string referrer;
std::string agent;
2019-08-19 07:22:54 -04:00
std::string connection;
boost::asio::ip::address endpoint;
};
2016-01-05 10:51:13 -05:00
}
}
}
#endif // REQUEST_HPP