basic_parser::put doc

fix #494
This commit is contained in:
Vinnie Falco
2017-06-15 09:36:36 -07:00
parent 648d1bc789
commit b4c2073973
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,7 @@ Version 58:
* Avoid `std::string` in websocket * Avoid `std::string` in websocket
* Fix basic_fields insert ordering * Fix basic_fields insert ordering
* basic_fields::set optimization * basic_fields::set optimization
* basic_parser::put doc
API Changes: API Changes:

View File

@@ -323,7 +323,11 @@ public:
the parser may not be restarted. the parser may not be restarted.
@param buffers An object meeting the requirements of @param buffers An object meeting the requirements of
@b ConstBufferSequence that represents the message. @b ConstBufferSequence that represents the next chunk of
message data. If the length of this buffer sequence is
one, the implementation will not allocate additional memory.
The class @ref flat_buffer is provided as one way to
meet this requirement
@param ec Set to the error, if any occurred. @param ec Set to the error, if any occurred.