mirror of
https://github.com/boostorg/beast.git
synced 2025-08-01 22:04:34 +02:00
@@ -1,3 +1,9 @@
|
|||||||
|
1.0.0-b33
|
||||||
|
|
||||||
|
* Require Visual Studio 2015 Update 3 or later
|
||||||
|
|
||||||
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
1.0.0-b32
|
1.0.0-b32
|
||||||
|
|
||||||
* Add io_service completion invariants test
|
* Add io_service completion invariants test
|
||||||
|
16
README.md
16
README.md
@@ -76,6 +76,8 @@ The library has been submitted to the
|
|||||||
* Boost 1.58 or later
|
* Boost 1.58 or later
|
||||||
* C++11 or later
|
* C++11 or later
|
||||||
|
|
||||||
|
When using Microsoft Visual C++, Visual Studio 2015 Update 3 or later is required.
|
||||||
|
|
||||||
These components are optionally required in order to build the
|
These components are optionally required in order to build the
|
||||||
tests and examples:
|
tests and examples:
|
||||||
|
|
||||||
@@ -103,19 +105,27 @@ Boost.Coroutine library. Please visit the Boost documentation for
|
|||||||
instructions on how to do this for your particular build system.
|
instructions on how to do this for your particular build system.
|
||||||
|
|
||||||
For the examples and tests, Beast provides build scripts for Boost.Build (bjam)
|
For the examples and tests, Beast provides build scripts for Boost.Build (bjam)
|
||||||
and CMake. Developers using Microsoft Visual Studio can generate Visual Studio
|
and CMake. It is possible to generate Microsoft Visual Studio or Apple
|
||||||
|
Developers using Microsoft Visual Studio can generate Visual Studio
|
||||||
project files by executing these commands from the root of the repository:
|
project files by executing these commands from the root of the repository:
|
||||||
|
|
||||||
|
|
||||||
```
|
```
|
||||||
cd bin
|
cd bin
|
||||||
cmake .. # for 32-bit Windows build
|
cmake .. # for 32-bit Windows builds
|
||||||
|
|
||||||
cd ../bin64
|
cd ../bin64
|
||||||
cmake .. # for Linux/Mac builds, OR
|
cmake .. # for Linux/Mac builds, OR
|
||||||
cmake -G"Visual Studio 14 2015 Win64" .. # for 64-bit Windows builds
|
cmake -G"Visual Studio 14 2015 Win64" .. # for 64-bit Windows builds
|
||||||
```
|
```
|
||||||
|
|
||||||
|
When using Apple Xcode it is possible to generate Xcode project files
|
||||||
|
using these commands:
|
||||||
|
|
||||||
|
```
|
||||||
|
cd bin
|
||||||
|
cmake -G Xcode .. # for Apple Xcode builds
|
||||||
|
```
|
||||||
|
|
||||||
To build with Boost.Build, it is necessary to have the bjam executable
|
To build with Boost.Build, it is necessary to have the bjam executable
|
||||||
in your path. And bjam needs to know how to find the Boost sources. The
|
in your path. And bjam needs to know how to find the Boost sources. The
|
||||||
easiest way to do this is make sure that the version of bjam in your path
|
easiest way to do this is make sure that the version of bjam in your path
|
||||||
|
27
include/beast/config.hpp
Normal file
27
include/beast/config.hpp
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2013-2017 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_CONFIG_HPP
|
||||||
|
#define BEAST_CONFIG_HPP
|
||||||
|
|
||||||
|
/*
|
||||||
|
_MSC_VER and _MSC_FULL_VER by version:
|
||||||
|
|
||||||
|
14.0 (2015) 1900 190023026
|
||||||
|
14.0 (2015 Update 1) 1900 190023506
|
||||||
|
14.0 (2015 Update 2) 1900 190023918
|
||||||
|
14.0 (2015 Update 3) 1900 190024210
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if defined(_MSC_FULL_VER)
|
||||||
|
#if _MSC_FULL_VER < 190024210
|
||||||
|
static_assert(false,
|
||||||
|
"This library requires Visual Studio 2015 Update 3 or later");
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#endif
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_CORE_HPP
|
#ifndef BEAST_CORE_HPP
|
||||||
#define BEAST_CORE_HPP
|
#define BEAST_CORE_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
#include <beast/core/async_completion.hpp>
|
#include <beast/core/async_completion.hpp>
|
||||||
#include <beast/core/bind_handler.hpp>
|
#include <beast/core/bind_handler.hpp>
|
||||||
#include <beast/core/buffer_cat.hpp>
|
#include <beast/core/buffer_cat.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_ASYNC_COMPLETION_HPP
|
#ifndef BEAST_ASYNC_COMPLETION_HPP
|
||||||
#define BEAST_ASYNC_COMPLETION_HPP
|
#define BEAST_ASYNC_COMPLETION_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/handler_concepts.hpp>
|
#include <beast/core/handler_concepts.hpp>
|
||||||
#include <boost/asio/async_result.hpp>
|
#include <boost/asio/async_result.hpp>
|
||||||
#include <boost/asio/handler_type.hpp>
|
#include <boost/asio/handler_type.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_BIND_HANDLER_HPP
|
#ifndef BEAST_BIND_HANDLER_HPP
|
||||||
#define BEAST_BIND_HANDLER_HPP
|
#define BEAST_BIND_HANDLER_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/handler_concepts.hpp>
|
#include <beast/core/handler_concepts.hpp>
|
||||||
#include <beast/core/detail/bind_handler.hpp>
|
#include <beast/core/detail/bind_handler.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_BUFFER_CAT_HPP
|
#ifndef BEAST_BUFFER_CAT_HPP
|
||||||
#define BEAST_BUFFER_CAT_HPP
|
#define BEAST_BUFFER_CAT_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/buffer_cat.hpp>
|
#include <beast/core/detail/buffer_cat.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_BUFFER_CONCEPTS_HPP
|
#ifndef BEAST_BUFFER_CONCEPTS_HPP
|
||||||
#define BEAST_BUFFER_CONCEPTS_HPP
|
#define BEAST_BUFFER_CONCEPTS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/buffer_concepts.hpp>
|
#include <beast/core/detail/buffer_concepts.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_BUFFERS_ADAPTER_HPP
|
#ifndef BEAST_BUFFERS_ADAPTER_HPP
|
||||||
#define BEAST_BUFFERS_ADAPTER_HPP
|
#define BEAST_BUFFERS_ADAPTER_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_CONSUMING_BUFFERS_HPP
|
#ifndef BEAST_CONSUMING_BUFFERS_HPP
|
||||||
#define BEAST_CONSUMING_BUFFERS_HPP
|
#define BEAST_CONSUMING_BUFFERS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_DYNABUF_READSTREAM_HPP
|
#ifndef BEAST_DYNABUF_READSTREAM_HPP
|
||||||
#define BEAST_DYNABUF_READSTREAM_HPP
|
#define BEAST_DYNABUF_READSTREAM_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/async_completion.hpp>
|
#include <beast/core/async_completion.hpp>
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_ERROR_HPP
|
#ifndef BEAST_ERROR_HPP
|
||||||
#define BEAST_ERROR_HPP
|
#define BEAST_ERROR_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <boost/system/error_code.hpp>
|
#include <boost/system/error_code.hpp>
|
||||||
#include <boost/system/system_error.hpp>
|
#include <boost/system/system_error.hpp>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HANDLER_ALLOC_HPP
|
#ifndef BEAST_HANDLER_ALLOC_HPP
|
||||||
#define BEAST_HANDLER_ALLOC_HPP
|
#define BEAST_HANDLER_ALLOC_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/handler_helpers.hpp>
|
#include <beast/core/handler_helpers.hpp>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HANDLER_CONCEPTS_HPP
|
#ifndef BEAST_HANDLER_CONCEPTS_HPP
|
||||||
#define BEAST_HANDLER_CONCEPTS_HPP
|
#define BEAST_HANDLER_CONCEPTS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/is_call_possible.hpp>
|
#include <beast/core/detail/is_call_possible.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HANDLER_HELPERS_HPP
|
#ifndef BEAST_HANDLER_HELPERS_HPP
|
||||||
#define BEAST_HANDLER_HELPERS_HPP
|
#define BEAST_HANDLER_HELPERS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <boost/asio/handler_alloc_hook.hpp>
|
#include <boost/asio/handler_alloc_hook.hpp>
|
||||||
#include <boost/asio/handler_continuation_hook.hpp>
|
#include <boost/asio/handler_continuation_hook.hpp>
|
||||||
#include <boost/asio/handler_invoke_hook.hpp>
|
#include <boost/asio/handler_invoke_hook.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HANDLER_PTR_HPP
|
#ifndef BEAST_HANDLER_PTR_HPP
|
||||||
#define BEAST_HANDLER_PTR_HPP
|
#define BEAST_HANDLER_PTR_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_PLACEHOLDERS_HPP
|
#ifndef BEAST_PLACEHOLDERS_HPP
|
||||||
#define BEAST_PLACEHOLDERS_HPP
|
#define BEAST_PLACEHOLDERS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_PREPARE_BUFFER_HPP
|
#ifndef BEAST_PREPARE_BUFFER_HPP
|
||||||
#define BEAST_PREPARE_BUFFER_HPP
|
#define BEAST_PREPARE_BUFFER_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_PREPARE_BUFFERS_HPP
|
#ifndef BEAST_PREPARE_BUFFERS_HPP
|
||||||
#define BEAST_PREPARE_BUFFERS_HPP
|
#define BEAST_PREPARE_BUFFERS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/prepare_buffers.hpp>
|
#include <beast/core/detail/prepare_buffers.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_STATIC_STREAMBUF_HPP
|
#ifndef BEAST_STATIC_STREAMBUF_HPP
|
||||||
#define BEAST_STATIC_STREAMBUF_HPP
|
#define BEAST_STATIC_STREAMBUF_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <boost/utility/base_from_member.hpp>
|
#include <boost/utility/base_from_member.hpp>
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <array>
|
#include <array>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_STATIC_STRING_HPP
|
#ifndef BEAST_WEBSOCKET_STATIC_STRING_HPP
|
||||||
#define BEAST_WEBSOCKET_STATIC_STRING_HPP
|
#define BEAST_WEBSOCKET_STATIC_STRING_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
#include <array>
|
#include <array>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_STREAM_CONCEPTS_HPP
|
#ifndef BEAST_STREAM_CONCEPTS_HPP
|
||||||
#define BEAST_STREAM_CONCEPTS_HPP
|
#define BEAST_STREAM_CONCEPTS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/stream_concepts.hpp>
|
#include <beast/core/detail/stream_concepts.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_STREAMBUF_HPP
|
#ifndef BEAST_STREAMBUF_HPP
|
||||||
#define BEAST_STREAMBUF_HPP
|
#define BEAST_STREAMBUF_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/empty_base_optimization.hpp>
|
#include <beast/core/detail/empty_base_optimization.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <boost/intrusive/list.hpp>
|
#include <boost/intrusive/list.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_TO_STRING_HPP
|
#ifndef BEAST_TO_STRING_HPP
|
||||||
#define BEAST_TO_STRING_HPP
|
#define BEAST_TO_STRING_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WRITE_DYNABUF_HPP
|
#ifndef BEAST_WRITE_DYNABUF_HPP
|
||||||
#define BEAST_WRITE_DYNABUF_HPP
|
#define BEAST_WRITE_DYNABUF_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/buffer_concepts.hpp>
|
#include <beast/core/buffer_concepts.hpp>
|
||||||
#include <beast/core/detail/write_dynabuf.hpp>
|
#include <beast/core/detail/write_dynabuf.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_HTTP_HPP
|
#ifndef BEAST_HTTP_HPP
|
||||||
#define BEAST_HTTP_HPP
|
#define BEAST_HTTP_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
#include <beast/http/basic_fields.hpp>
|
#include <beast/http/basic_fields.hpp>
|
||||||
#include <beast/http/basic_parser_v1.hpp>
|
#include <beast/http/basic_parser_v1.hpp>
|
||||||
#include <beast/http/chunk_encode.hpp>
|
#include <beast/http/chunk_encode.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_BASIC_DYNABUF_BODY_HPP
|
#ifndef BEAST_HTTP_BASIC_DYNABUF_BODY_HPP
|
||||||
#define BEAST_HTTP_BASIC_DYNABUF_BODY_HPP
|
#define BEAST_HTTP_BASIC_DYNABUF_BODY_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_BASIC_FIELDS_HPP
|
#ifndef BEAST_HTTP_BASIC_FIELDS_HPP
|
||||||
#define BEAST_HTTP_BASIC_FIELDS_HPP
|
#define BEAST_HTTP_BASIC_FIELDS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/detail/empty_base_optimization.hpp>
|
#include <beast/core/detail/empty_base_optimization.hpp>
|
||||||
#include <beast/http/detail/basic_fields.hpp>
|
#include <beast/http/detail/basic_fields.hpp>
|
||||||
#include <boost/lexical_cast.hpp>
|
#include <boost/lexical_cast.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_BASIC_PARSER_v1_HPP
|
#ifndef BEAST_HTTP_BASIC_PARSER_v1_HPP
|
||||||
#define BEAST_HTTP_BASIC_PARSER_v1_HPP
|
#define BEAST_HTTP_BASIC_PARSER_v1_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
#include <beast/http/parse_error.hpp>
|
#include <beast/http/parse_error.hpp>
|
||||||
#include <beast/http/rfc7230.hpp>
|
#include <beast/http/rfc7230.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_CHUNK_ENCODE_HPP
|
#ifndef BEAST_HTTP_CHUNK_ENCODE_HPP
|
||||||
#define BEAST_HTTP_CHUNK_ENCODE_HPP
|
#define BEAST_HTTP_CHUNK_ENCODE_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/buffer_cat.hpp>
|
#include <beast/core/buffer_cat.hpp>
|
||||||
#include <beast/http/detail/chunk_encode.hpp>
|
#include <beast/http/detail/chunk_encode.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_TYPE_CHECK_HPP
|
#ifndef BEAST_HTTP_TYPE_CHECK_HPP
|
||||||
#define BEAST_HTTP_TYPE_CHECK_HPP
|
#define BEAST_HTTP_TYPE_CHECK_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
#include <boost/asio/buffer.hpp>
|
#include <boost/asio/buffer.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_EMPTY_BODY_HPP
|
#ifndef BEAST_HTTP_EMPTY_BODY_HPP
|
||||||
#define BEAST_HTTP_EMPTY_BODY_HPP
|
#define BEAST_HTTP_EMPTY_BODY_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_FIELDS_HPP
|
#ifndef BEAST_HTTP_FIELDS_HPP
|
||||||
#define BEAST_HTTP_FIELDS_HPP
|
#define BEAST_HTTP_FIELDS_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/basic_fields.hpp>
|
#include <beast/http/basic_fields.hpp>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_HEADERS_PARSER_V1_HPP
|
#ifndef BEAST_HTTP_HEADERS_PARSER_V1_HPP
|
||||||
#define BEAST_HTTP_HEADERS_PARSER_V1_HPP
|
#define BEAST_HTTP_HEADERS_PARSER_V1_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/basic_parser_v1.hpp>
|
#include <beast/http/basic_parser_v1.hpp>
|
||||||
#include <beast/http/concepts.hpp>
|
#include <beast/http/concepts.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_MESSAGE_HPP
|
#ifndef BEAST_HTTP_MESSAGE_HPP
|
||||||
#define BEAST_HTTP_MESSAGE_HPP
|
#define BEAST_HTTP_MESSAGE_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/fields.hpp>
|
#include <beast/http/fields.hpp>
|
||||||
#include <beast/core/detail/integer_sequence.hpp>
|
#include <beast/core/detail/integer_sequence.hpp>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_PARSE_HPP
|
#ifndef BEAST_HTTP_PARSE_HPP
|
||||||
#define BEAST_HTTP_PARSE_HPP
|
#define BEAST_HTTP_PARSE_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/core/async_completion.hpp>
|
#include <beast/core/async_completion.hpp>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_PARSE_ERROR_HPP
|
#ifndef BEAST_HTTP_PARSE_ERROR_HPP
|
||||||
#define BEAST_HTTP_PARSE_ERROR_HPP
|
#define BEAST_HTTP_PARSE_ERROR_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_PARSER_V1_HPP
|
#ifndef BEAST_HTTP_PARSER_V1_HPP
|
||||||
#define BEAST_HTTP_PARSER_V1_HPP
|
#define BEAST_HTTP_PARSER_V1_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/concepts.hpp>
|
#include <beast/http/concepts.hpp>
|
||||||
#include <beast/http/header_parser_v1.hpp>
|
#include <beast/http/header_parser_v1.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_READ_HPP
|
#ifndef BEAST_HTTP_READ_HPP
|
||||||
#define BEAST_HTTP_READ_HPP
|
#define BEAST_HTTP_READ_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/async_completion.hpp>
|
#include <beast/core/async_completion.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_HTTP_REASON_HPP
|
#ifndef BEAST_HTTP_REASON_HPP
|
||||||
#define BEAST_HTTP_REASON_HPP
|
#define BEAST_HTTP_REASON_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
namespace http {
|
namespace http {
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_RFC7230_HPP
|
#ifndef BEAST_HTTP_RFC7230_HPP
|
||||||
#define BEAST_HTTP_RFC7230_HPP
|
#define BEAST_HTTP_RFC7230_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/detail/rfc7230.hpp>
|
#include <beast/http/detail/rfc7230.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_STREAMBUF_BODY_HPP
|
#ifndef BEAST_HTTP_STREAMBUF_BODY_HPP
|
||||||
#define BEAST_HTTP_STREAMBUF_BODY_HPP
|
#define BEAST_HTTP_STREAMBUF_BODY_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/basic_dynabuf_body.hpp>
|
#include <beast/http/basic_dynabuf_body.hpp>
|
||||||
#include <beast/core/streambuf.hpp>
|
#include <beast/core/streambuf.hpp>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_STRING_BODY_HPP
|
#ifndef BEAST_HTTP_STRING_BODY_HPP
|
||||||
#define BEAST_HTTP_STRING_BODY_HPP
|
#define BEAST_HTTP_STRING_BODY_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_HTTP_WRITE_HPP
|
#ifndef BEAST_HTTP_WRITE_HPP
|
||||||
#define BEAST_HTTP_WRITE_HPP
|
#define BEAST_HTTP_WRITE_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
#include <beast/core/async_completion.hpp>
|
#include <beast/core/async_completion.hpp>
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_VERSION_HPP
|
#ifndef BEAST_VERSION_HPP
|
||||||
#define BEAST_VERSION_HPP
|
#define BEAST_VERSION_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
// follows http://semver.org
|
// follows http://semver.org
|
||||||
|
|
||||||
// BEAST_VERSION % 100 is the patch level
|
// BEAST_VERSION % 100 is the patch level
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_HPP
|
#ifndef BEAST_WEBSOCKET_HPP
|
||||||
#define BEAST_WEBSOCKET_HPP
|
#define BEAST_WEBSOCKET_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
#include <beast/websocket/error.hpp>
|
#include <beast/websocket/error.hpp>
|
||||||
#include <beast/websocket/option.hpp>
|
#include <beast/websocket/option.hpp>
|
||||||
#include <beast/websocket/rfc6455.hpp>
|
#include <beast/websocket/rfc6455.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_ERROR_HPP
|
#ifndef BEAST_WEBSOCKET_ERROR_HPP
|
||||||
#define BEAST_WEBSOCKET_ERROR_HPP
|
#define BEAST_WEBSOCKET_ERROR_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_OPTION_HPP
|
#ifndef BEAST_WEBSOCKET_OPTION_HPP
|
||||||
#define BEAST_WEBSOCKET_OPTION_HPP
|
#define BEAST_WEBSOCKET_OPTION_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/websocket/rfc6455.hpp>
|
#include <beast/websocket/rfc6455.hpp>
|
||||||
#include <beast/websocket/detail/decorator.hpp>
|
#include <beast/websocket/detail/decorator.hpp>
|
||||||
#include <beast/core/detail/type_traits.hpp>
|
#include <beast/core/detail/type_traits.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_RFC6455_HPP
|
#ifndef BEAST_WEBSOCKET_RFC6455_HPP
|
||||||
#define BEAST_WEBSOCKET_RFC6455_HPP
|
#define BEAST_WEBSOCKET_RFC6455_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/static_string.hpp>
|
#include <beast/core/static_string.hpp>
|
||||||
#include <boost/optional.hpp>
|
#include <boost/optional.hpp>
|
||||||
#include <array>
|
#include <array>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_SSL_HPP
|
#ifndef BEAST_WEBSOCKET_SSL_HPP
|
||||||
#define BEAST_WEBSOCKET_SSL_HPP
|
#define BEAST_WEBSOCKET_SSL_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/websocket/teardown.hpp>
|
#include <beast/websocket/teardown.hpp>
|
||||||
#include <boost/asio/ip/tcp.hpp>
|
#include <boost/asio/ip/tcp.hpp>
|
||||||
#include <boost/asio/ssl/stream.hpp>
|
#include <boost/asio/ssl/stream.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_STREAM_HPP
|
#ifndef BEAST_WEBSOCKET_STREAM_HPP
|
||||||
#define BEAST_WEBSOCKET_STREAM_HPP
|
#define BEAST_WEBSOCKET_STREAM_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/websocket/option.hpp>
|
#include <beast/websocket/option.hpp>
|
||||||
#include <beast/websocket/detail/stream_base.hpp>
|
#include <beast/websocket/detail/stream_base.hpp>
|
||||||
#include <beast/http/message.hpp>
|
#include <beast/http/message.hpp>
|
||||||
|
@@ -8,6 +8,7 @@
|
|||||||
#ifndef BEAST_WEBSOCKET_TEARDOWN_HPP
|
#ifndef BEAST_WEBSOCKET_TEARDOWN_HPP
|
||||||
#define BEAST_WEBSOCKET_TEARDOWN_HPP
|
#define BEAST_WEBSOCKET_TEARDOWN_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/websocket/error.hpp>
|
#include <beast/websocket/error.hpp>
|
||||||
#include <boost/asio/ip/tcp.hpp>
|
#include <boost/asio/ip/tcp.hpp>
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
@@ -8,6 +8,8 @@
|
|||||||
#ifndef BEAST_ZLIB_HPP
|
#ifndef BEAST_ZLIB_HPP
|
||||||
#define BEAST_ZLIB_HPP
|
#define BEAST_ZLIB_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
|
|
||||||
#include <beast/zlib/deflate_stream.hpp>
|
#include <beast/zlib/deflate_stream.hpp>
|
||||||
#include <beast/zlib/inflate_stream.hpp>
|
#include <beast/zlib/inflate_stream.hpp>
|
||||||
|
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#ifndef BEAST_ZLIB_DEFLATE_STREAM_HPP
|
#ifndef BEAST_ZLIB_DEFLATE_STREAM_HPP
|
||||||
#define BEAST_ZLIB_DEFLATE_STREAM_HPP
|
#define BEAST_ZLIB_DEFLATE_STREAM_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/zlib/error.hpp>
|
#include <beast/zlib/error.hpp>
|
||||||
#include <beast/zlib/zlib.hpp>
|
#include <beast/zlib/zlib.hpp>
|
||||||
#include <beast/zlib/detail/deflate_stream.hpp>
|
#include <beast/zlib/detail/deflate_stream.hpp>
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#ifndef BEAST_ZLIB_ERROR_HPP
|
#ifndef BEAST_ZLIB_ERROR_HPP
|
||||||
#define BEAST_ZLIB_ERROR_HPP
|
#define BEAST_ZLIB_ERROR_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/core/error.hpp>
|
#include <beast/core/error.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#ifndef BEAST_ZLIB_INFLATE_STREAM_HPP
|
#ifndef BEAST_ZLIB_INFLATE_STREAM_HPP
|
||||||
#define BEAST_ZLIB_INFLATE_STREAM_HPP
|
#define BEAST_ZLIB_INFLATE_STREAM_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <beast/zlib/detail/inflate_stream.hpp>
|
#include <beast/zlib/detail/inflate_stream.hpp>
|
||||||
|
|
||||||
namespace beast {
|
namespace beast {
|
||||||
|
@@ -35,6 +35,7 @@
|
|||||||
#ifndef BEAST_ZLIB_ZLIB_HPP
|
#ifndef BEAST_ZLIB_ZLIB_HPP
|
||||||
#define BEAST_ZLIB_ZLIB_HPP
|
#define BEAST_ZLIB_ZLIB_HPP
|
||||||
|
|
||||||
|
#include <beast/config.hpp>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <cstdlib>
|
#include <cstdlib>
|
||||||
|
|
||||||
|
@@ -8,6 +8,7 @@ add_executable (lib-tests
|
|||||||
${BEAST_INCLUDES}
|
${BEAST_INCLUDES}
|
||||||
${EXTRAS_INCLUDES}
|
${EXTRAS_INCLUDES}
|
||||||
../extras/beast/unit_test/main.cpp
|
../extras/beast/unit_test/main.cpp
|
||||||
|
config.cpp
|
||||||
core.cpp
|
core.cpp
|
||||||
http.cpp
|
http.cpp
|
||||||
version.cpp
|
version.cpp
|
||||||
|
@@ -7,6 +7,7 @@
|
|||||||
|
|
||||||
import os ;
|
import os ;
|
||||||
|
|
||||||
|
compile config.cpp : : ;
|
||||||
compile core.cpp : : ;
|
compile core.cpp : : ;
|
||||||
compile http.cpp : : ;
|
compile http.cpp : : ;
|
||||||
compile version.cpp : : ;
|
compile version.cpp : : ;
|
||||||
|
9
test/config.cpp
Normal file
9
test/config.cpp
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
//
|
||||||
|
// Copyright (c) 2013-2017 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)
|
||||||
|
//
|
||||||
|
|
||||||
|
// Test that header file is self-contained.
|
||||||
|
#include <beast/config.hpp>
|
Reference in New Issue
Block a user