2017-05-28 19:49:41 -07:00
|
|
|
[/
|
|
|
|
|
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)
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[library Beast
|
|
|
|
|
[quickbook 1.6]
|
|
|
|
|
[copyright 2013 - 2017 Vinnie Falco]
|
|
|
|
|
[purpose Networking Protocol Library]
|
|
|
|
|
[license
|
|
|
|
|
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])
|
|
|
|
|
]
|
|
|
|
|
[authors [Falco, Vinnie]]
|
|
|
|
|
[category template]
|
|
|
|
|
[category generic]
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[template mdash[] '''— ''']
|
|
|
|
|
[template indexterm1[term1] '''<indexterm><primary>'''[term1]'''</primary></indexterm>''']
|
|
|
|
|
[template indexterm2[term1 term2] '''<indexterm><primary>'''[term1]'''</primary><secondary>'''[term2]'''</secondary></indexterm>''']
|
2017-06-11 09:59:13 -07:00
|
|
|
[template repo_file[path] '''<ulink url="https://github.com/vinniefalco/Beast/blob/master/'''[path]'''">'''[path]'''</ulink>''']
|
2017-06-14 12:03:19 -07:00
|
|
|
[template include_file[path][^<'''<ulink url="https://github.com/vinniefalco/Beast/blob/master/include/'''[path]'''">'''[path]'''</ulink>'''>]]
|
|
|
|
|
|
2017-05-28 19:49:41 -07:00
|
|
|
[def __N3747__ [@http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3747.pdf [*N3747]]]
|
|
|
|
|
[def __N4588__ [@http://cplusplus.github.io/networking-ts/draft.pdf [*N4588]]]
|
|
|
|
|
[def __rfc6455__ [@https://tools.ietf.org/html/rfc6455 rfc6455]]
|
|
|
|
|
[def __rfc7230__ [@https://tools.ietf.org/html/rfc7230 rfc7230]]
|
|
|
|
|
|
|
|
|
|
[def __Asio__ [@http://www.boost.org/doc/html/boost_asio.html Boost.Asio]]
|
|
|
|
|
|
|
|
|
|
[def __asio_handler_invoke__ [@http://www.boost.org/doc/html/boost_asio/reference/asio_handler_invoke.html `asio_handler_invoke`]]
|
|
|
|
|
[def __asio_handler_allocate__ [@http://www.boost.org/doc/html/boost_asio/reference/asio_handler_allocate.html `asio_handler_allocate`]]
|
|
|
|
|
[def __io_service__ [@http://www.boost.org/doc/html/boost_asio/reference/io_service.html `io_service`]]
|
2017-06-11 09:59:13 -07:00
|
|
|
[def __socket__ [@http://www.boost.org/doc/html/boost_asio/reference/ip__tcp/socket.html `boost::asio::ip::tcp::socket`]]
|
|
|
|
|
[def __ssl_stream__ [@http://www.boost.org/doc/html/boost_asio/reference/ssl_stream.html `boost::asio::ssl::stream`]]
|
|
|
|
|
[def __streambuf__ [@http://www.boost.org/doc/html/boost_asio/reference/streambuf.html `boost::asio::streambuf`]]
|
2017-06-07 16:30:49 -07:00
|
|
|
[def __use_future__ [@http://www.boost.org/doc/html/boost_asio/reference/use_future_t.html `boost::asio::use_future`]]
|
|
|
|
|
[def __void_or_deduced__ [@http://www.boost.org/doc/html/boost_asio/reference/asynchronous_operations.html#boost_asio.reference.asynchronous_operations.return_type_of_an_initiating_function ['void-or-deduced]]]
|
|
|
|
|
[def __yield_context__ [@http://www.boost.org/doc/html/boost_asio/reference/yield_context.html `boost::asio::yield_context`]]
|
2017-05-28 19:49:41 -07:00
|
|
|
|
|
|
|
|
[def __AsyncReadStream__ [@http://www.boost.org/doc/html/boost_asio/reference/AsyncReadStream.html [*AsyncReadStream]]]
|
|
|
|
|
[def __AsyncWriteStream__ [@http://www.boost.org/doc/html/boost_asio/reference/AsyncWriteStream.html [*AsyncWriteStream]]]
|
|
|
|
|
[def __CompletionHandler__ [@http://www.boost.org/doc/html/boost_asio/reference/CompletionHandler.html [*CompletionHandler]]]
|
|
|
|
|
[def __ConstBufferSequence__ [@http://www.boost.org/doc/html/boost_asio/reference/ConstBufferSequence.html [*ConstBufferSequence]]]
|
|
|
|
|
[def __Handler__ [@http://www.boost.org/doc/html/boost_asio/reference/Handler.html [*Handler]]]
|
|
|
|
|
[def __MutableBufferSequence__ [@http://www.boost.org/doc/html/boost_asio/reference/MutableBufferSequence.html [*MutableBufferSequence]]]
|
|
|
|
|
[def __SyncReadStream__ [@http://www.boost.org/doc/html/boost_asio/reference/SyncReadStream.html [*SyncReadStream]]]
|
|
|
|
|
[def __SyncWriteStream__ [@http://www.boost.org/doc/html/boost_asio/reference/SyncWriteStream.html [*SyncWriteStream]]]
|
|
|
|
|
|
2017-06-07 16:30:49 -07:00
|
|
|
[def __AsyncStream__ [link beast.concept.streams.AsyncStream [*AsyncStream]]]
|
|
|
|
|
[def __Body__ [link beast.concept.Body [*Body]]]
|
|
|
|
|
[def __BodyReader__ [link beast.concept.BodyReader [*BodyReader]]]
|
|
|
|
|
[def __BodyWriter__ [link beast.concept.BodyWriter [*BodyWriter]]]
|
|
|
|
|
[def __DynamicBuffer__ [link beast.concept.DynamicBuffer [*DynamicBuffer]]]
|
|
|
|
|
[def __Fields__ [link beast.concept.Fields [*Fields]]]
|
|
|
|
|
[def __FieldsReader__ [link beast.concept.FieldsReader [*FieldsReader]]]
|
|
|
|
|
[def __Stream__ [link beast.concept.streams [*Stream]]]
|
|
|
|
|
[def __SyncStream__ [link beast.concept.streams.SyncStream [*SyncStream]]]
|
2017-05-28 19:49:41 -07:00
|
|
|
|
2017-06-14 12:03:19 -07:00
|
|
|
[def __basic_fields__ [link beast.ref.beast__http__basic_fields `basic_fields`]]
|
|
|
|
|
[def __basic_multi_buffer__ [link beast.ref.beast__basic_multi_buffer `basic_multi_buffer`]]
|
|
|
|
|
[def __basic_parser__ [link beast.ref.beast__http__basic_parser `basic_parser`]]
|
|
|
|
|
[def __buffer_body__ [link beast.ref.beast__http__buffer_body `buffer_body`]]
|
|
|
|
|
[def __fields__ [link beast.ref.beast__http__fields `fields`]]
|
|
|
|
|
[def __flat_buffer__ [link beast.ref.beast__flat_buffer `flat_buffer`]]
|
|
|
|
|
[def __header__ [link beast.ref.beast__http__header `header`]]
|
|
|
|
|
[def __message__ [link beast.ref.beast__http__message `message`]]
|
|
|
|
|
[def __multi_buffer__ [link beast.ref.beast__multi_buffer `multi_buffer`]]
|
|
|
|
|
[def __parser__ [link beast.ref.beast__http__parser `parser`]]
|
|
|
|
|
[def __serializer__ [link beast.ref.beast__http__serializer `serializer`]]
|
|
|
|
|
[def __static_buffer__ [link beast.ref.beast__static_buffer `static_buffer`]]
|
|
|
|
|
[def __static_buffer_n__ [link beast.ref.beast__static_buffer_n `static_buffer_n`]]
|
2017-05-28 19:49:41 -07:00
|
|
|
|
2017-06-14 20:26:44 -07:00
|
|
|
[import ../example/doc/core_examples.hpp]
|
|
|
|
|
[import ../example/doc/http_examples.hpp]
|
|
|
|
|
[import ../example/echo-op/echo_op.cpp]
|
|
|
|
|
[import ../example/http-client/http_client.cpp]
|
2017-06-12 19:16:39 -07:00
|
|
|
[import ../example/server-framework/file_body.hpp]
|
2017-06-14 20:26:44 -07:00
|
|
|
[import ../example/websocket-client/websocket_client.cpp]
|
|
|
|
|
|
2017-06-07 18:18:50 -07:00
|
|
|
[import ../test/core/doc_snippets.cpp]
|
|
|
|
|
[import ../test/http/doc_snippets.cpp]
|
2017-06-07 16:30:49 -07:00
|
|
|
[import ../test/websocket/doc_snippets.cpp]
|
|
|
|
|
[import ../test/websocket/ssl/doc_snippets.cpp]
|
2017-05-28 19:49:41 -07:00
|
|
|
|
2017-06-16 19:27:00 -07:00
|
|
|
[include 1_intro.qbk]
|
2017-06-04 07:19:19 -07:00
|
|
|
[include 2_examples.qbk]
|
|
|
|
|
[include 3_0_core.qbk]
|
2017-06-08 22:03:58 -07:00
|
|
|
[include 5_00_http.qbk]
|
|
|
|
|
[include 6_0_http_examples.qbk]
|
|
|
|
|
[include 7_0_websocket.qbk]
|
|
|
|
|
[include 8_concepts.qbk]
|
|
|
|
|
[include 9_0_design.qbk]
|
2017-05-28 19:49:41 -07:00
|
|
|
|
2017-06-04 17:25:55 -07:00
|
|
|
[section:quickref Reference]
|
2017-05-28 19:49:41 -07:00
|
|
|
[xinclude quickref.xml]
|
2017-06-04 17:25:55 -07:00
|
|
|
[endsect]
|
|
|
|
|
|
|
|
|
|
[block'''<reference id="hidden"><title>This Page Intentionally Left Blank 1/2</title>''']
|
|
|
|
|
[section:ref This Page Intentionally Left Blank 2/2]
|
2017-05-28 19:49:41 -07:00
|
|
|
[include reference.qbk]
|
|
|
|
|
[endsect]
|
2017-06-04 17:25:55 -07:00
|
|
|
[block'''</reference>''']
|
2017-05-28 19:49:41 -07:00
|
|
|
|
|
|
|
|
[xinclude index.xml]
|