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

27 lines
299 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;
boost::asio::ip::address endpoint;
};
2016-01-05 10:51:13 -05:00
}
}
}
#endif // REQUEST_HPP