diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e66e6d7..5b6b39e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,7 +47,6 @@ API Changes: * Relax ForwardIterator requirements in FieldSequence * Fix websocket failure testing * Refine Writer concept and fix exemplar in documentation -* Improve websocket example API Changes: diff --git a/doc/http.qbk b/doc/http.qbk index 83618b72..3553f3ee 100644 --- a/doc/http.qbk +++ b/doc/http.qbk @@ -123,7 +123,7 @@ These statements set fields in request and response message objects: req.body = ""; response res; - res.version = 10; // HTTP/1.0 + res.version = 10; // HTTP/1.0 res.status = 404; res.reason = "Not Found"; res.headers.insert("Server", "Beast.HTTP"); diff --git a/doc/quickref.xml b/doc/quickref.xml index 38dadda9..8811e848 100644 --- a/doc/quickref.xml +++ b/doc/quickref.xml @@ -34,7 +34,7 @@ basic_parser_v1 empty_body headers - headers_parser + headers_parser_v1 message message_headers parser_v1 @@ -59,7 +59,6 @@ async_parse async_read async_write - async_write is_keep_alive is_upgrade parse @@ -74,7 +73,7 @@ is_Body is_Parser is_Reader - is_Reader + is_Writer has_reader has_writer diff --git a/doc/reference.xsl b/doc/reference.xsl index fa9703bc..d0f2d990 100644 --- a/doc/reference.xsl +++ b/doc/reference.xsl @@ -267,10 +267,10 @@ select="concat(substring-before($name, '*'), '_star_', substring-after($name, '*'))"/> - + + select="concat(substring-after($name, '~'), '_dtor_')"/> diff --git a/include/beast/http/headers_parser_v1.hpp b/include/beast/http/headers_parser_v1.hpp index 799d148d..21236fd5 100644 --- a/include/beast/http/headers_parser_v1.hpp +++ b/include/beast/http/headers_parser_v1.hpp @@ -40,7 +40,7 @@ struct response_parser_base This class uses the HTTP/1 wire format parser to convert a series of octets into a @ref request_headers - or @ref @response_headers. + or @ref response_headers. @note A new instance of the parser is required for each message. */ diff --git a/include/beast/http/parser_v1.hpp b/include/beast/http/parser_v1.hpp index a690919e..c729d12b 100644 --- a/include/beast/http/parser_v1.hpp +++ b/include/beast/http/parser_v1.hpp @@ -174,7 +174,7 @@ public: /** Returns ownership of the parsed message. Ownership is transferred to the caller. Only - valid if @ref complete` would return `true`. + valid if @ref complete would return `true`. Requires: `message` is @b MoveConstructible @@ -303,7 +303,7 @@ private: @param args Forwarded to the body constructor of the message in the new parser. - @return A parser for a message with the specified @ref Body type. + @return A parser for a message with the specified @b Body type. @par Example @code