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

22 lines
333 B
C++
Raw Permalink Normal View History

#ifndef REQUEST_HPP
#define REQUEST_HPP
#include <boost/asio.hpp>
#include <string>
2013-12-16 05:29:38 -05:00
namespace osrm::server::http
2014-05-11 12:03:05 -04:00
{
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;
};
2022-12-20 12:00:11 -05:00
} // namespace osrm::server::http
#endif // REQUEST_HPP