header.hpp 508 B

12345678910111213141516171819202122232425262728
  1. //
  2. // header.hpp
  3. // ~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2019 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. #ifndef HTTP_HEADER_HPP
  11. #define HTTP_HEADER_HPP
  12. #include <string>
  13. namespace http {
  14. namespace server {
  15. struct header
  16. {
  17. std::string name;
  18. std::string value;
  19. };
  20. } // namespace server
  21. } // namespace http
  22. #endif // HTTP_HEADER_HPP