-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathhttp_proto.hpp
More file actions
51 lines (46 loc) · 1.87 KB
/
http_proto.hpp
File metadata and controls
51 lines (46 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//
// Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
//
// Distributed under the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
// Official repository: https://github.com/cppalliance/http_proto
//
#ifndef BOOST_HTTP_PROTO_HPP
#define BOOST_HTTP_PROTO_HPP
#include <boost/http_proto/error.hpp>
#include <boost/http_proto/field.hpp>
#include <boost/http_proto/fields.hpp>
#include <boost/http_proto/fields_base.hpp>
#include <boost/http_proto/file.hpp>
#include <boost/http_proto/file_mode.hpp>
#include <boost/http_proto/file_sink.hpp>
#include <boost/http_proto/file_source.hpp>
#include <boost/http_proto/header_limits.hpp>
#include <boost/http_proto/message_base.hpp>
#include <boost/http_proto/metadata.hpp>
#include <boost/http_proto/method.hpp>
#include <boost/http_proto/parser.hpp>
#include <boost/http_proto/request.hpp>
#include <boost/http_proto/request_parser.hpp>
#include <boost/http_proto/response.hpp>
#include <boost/http_proto/response_parser.hpp>
#include <boost/http_proto/serializer.hpp>
#include <boost/http_proto/sink.hpp>
#include <boost/http_proto/source.hpp>
#include <boost/http_proto/status.hpp>
#include <boost/http_proto/string_body.hpp>
#include <boost/http_proto/version.hpp>
#include <boost/http_proto/rfc/combine_field_values.hpp>
#include <boost/http_proto/rfc/list_rule.hpp>
//#include <boost/http_proto/rfc/media_type.hpp>
#include <boost/http_proto/rfc/parameter.hpp>
#include <boost/http_proto/rfc/quoted_token_rule.hpp>
#include <boost/http_proto/rfc/quoted_token_view.hpp>
#include <boost/http_proto/rfc/token_rule.hpp>
#include <boost/http_proto/rfc/upgrade_rule.hpp>
#include <boost/http_proto/server/basic_router.hpp>
#include <boost/http_proto/server/cors.hpp>
#include <boost/http_proto/server/route_handler.hpp>
#include <boost/http_proto/server/router_types.hpp>
#endif