mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
ext_list:
Iterable container of comma separated extensions, where each extension
is a token followed an optional list of semicolon delimited parameters,
with each parameter consisting of a name / value pair. The value can
be a token or quoted-string.
param_list:
Iterable container of semicolon delimited parameters, where each parameter
is a name / value pair. The value can be a token or quoted-string.
token_list
Iterable container of comma delimited tokens.
* Remove obsolete rfc2616 functions
* Refactor and consolidate case-insensitive string helpers
29 lines
878 B
C++
29 lines
878 B
C++
//
|
|
// Copyright (c) 2013-2016 Vinnie Falco (vinnie dot falco at gmail dot 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)
|
|
//
|
|
|
|
#ifndef BEAST_HTTP_HPP
|
|
#define BEAST_HTTP_HPP
|
|
|
|
#include <beast/http/basic_headers.hpp>
|
|
#include <beast/http/basic_parser_v1.hpp>
|
|
#include <beast/http/body_type.hpp>
|
|
#include <beast/http/empty_body.hpp>
|
|
#include <beast/http/headers.hpp>
|
|
#include <beast/http/message.hpp>
|
|
#include <beast/http/message_v1.hpp>
|
|
#include <beast/http/parse_error.hpp>
|
|
#include <beast/http/parser_v1.hpp>
|
|
#include <beast/http/read.hpp>
|
|
#include <beast/http/reason.hpp>
|
|
#include <beast/http/resume_context.hpp>
|
|
#include <beast/http/rfc7230.hpp>
|
|
#include <beast/http/streambuf_body.hpp>
|
|
#include <beast/http/string_body.hpp>
|
|
#include <beast/http/write.hpp>
|
|
|
|
#endif
|