]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/asio/example/cpp03/http/server3/request.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server3 / request.hpp
1 //
2 // request.hpp
3 // ~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2016 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10
11 #ifndef HTTP_SERVER3_REQUEST_HPP
12 #define HTTP_SERVER3_REQUEST_HPP
13
14 #include <string>
15 #include <vector>
16 #include "header.hpp"
17
18 namespace http {
19 namespace server3 {
20
21 /// A request received from a client.
22 struct request
23 {
24 std::string method;
25 std::string uri;
26 int http_version_major;
27 int http_version_minor;
28 std::vector<header> headers;
29 };
30
31 } // namespace server3
32 } // namespace http
33
34 #endif // HTTP_SERVER3_REQUEST_HPP