]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/asio/example/cpp03/http/server/header.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / libs / asio / example / cpp03 / http / server / header.hpp
CommitLineData
7c673cae
FG
1//
2// header.hpp
3// ~~~~~~~~~~
4//
b32b8144 5// Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
7c673cae
FG
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_HEADER_HPP
12#define HTTP_HEADER_HPP
13
14#include <string>
15
16namespace http {
17namespace server {
18
19struct header
20{
21 std::string name;
22 std::string value;
23};
24
25} // namespace server
26} // namespace http
27
28#endif // HTTP_HEADER_HPP