mirror of
https://github.com/boostorg/beast.git
synced 2025-07-30 04:47:29 +02:00
Fix some typos
This commit is contained in:
committed by
Vinnie Falco
parent
658e678673
commit
24ccdd243a
@ -1,3 +1,9 @@
|
||||
Version 243:
|
||||
|
||||
* Fix some typos
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
Version 242:
|
||||
|
||||
* test::stream has deprecated lowest_layer for ssl
|
||||
|
@ -102,7 +102,6 @@ open(char const* path, file_mode mode, error_code& ec)
|
||||
case file_mode::write_new:
|
||||
{
|
||||
#if BOOST_WORKAROUND(BOOST_MSVC, < 1910)
|
||||
x
|
||||
FILE* f0;
|
||||
auto const ev = ::fopen_s(&f0, path, "rb");
|
||||
if(ev)
|
||||
|
@ -545,11 +545,11 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param method The request-method to use
|
||||
@param method The request-method to use.
|
||||
|
||||
@param target The request-target.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@note This function is only available when `isRequest == true`.
|
||||
*/
|
||||
@ -564,11 +564,11 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param method The request-method to use
|
||||
@param method The request-method to use.
|
||||
|
||||
@param target The request-target.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@param body_arg An argument forwarded to the `body` constructor.
|
||||
|
||||
@ -588,11 +588,11 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param method The request-method to use
|
||||
@param method The request-method to use.
|
||||
|
||||
@param target The request-target.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@param body_arg An argument forwarded to the `body` constructor.
|
||||
|
||||
@ -614,9 +614,9 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param result The status-code for the response
|
||||
@param result The status-code for the response.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@note This member is only available when `isRequest == false`.
|
||||
*/
|
||||
@ -631,9 +631,9 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param result The status-code for the response
|
||||
@param result The status-code for the response.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@param body_arg An argument forwarded to the `body` constructor.
|
||||
|
||||
@ -651,9 +651,9 @@ public:
|
||||
|
||||
/** Constructor
|
||||
|
||||
@param result The status-code for the response
|
||||
@param result The status-code for the response.
|
||||
|
||||
@param version The HTTP-version
|
||||
@param version The HTTP-version.
|
||||
|
||||
@param body_arg An argument forwarded to the `body` constructor.
|
||||
|
||||
@ -725,7 +725,7 @@ public:
|
||||
|
||||
/** Set or clear the chunked Transfer-Encoding
|
||||
|
||||
This function will set or removed the "chunked" transfer
|
||||
This function will set or remove the "chunked" transfer
|
||||
encoding as the last item in the list of encodings in the
|
||||
field.
|
||||
|
||||
|
@ -1634,7 +1634,7 @@ public:
|
||||
This function is used to send a
|
||||
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
|
||||
which is usually sent automatically in response to a ping frame
|
||||
from the the remote peer.
|
||||
from the remote peer.
|
||||
|
||||
The call blocks until one of the following conditions is true:
|
||||
|
||||
@ -1661,7 +1661,7 @@ public:
|
||||
This function is used to send a
|
||||
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
|
||||
which is usually sent automatically in response to a ping frame
|
||||
from the the remote peer.
|
||||
from the remote peer.
|
||||
|
||||
The call blocks until one of the following conditions is true:
|
||||
|
||||
@ -1688,7 +1688,7 @@ public:
|
||||
This function is used to asynchronously send a
|
||||
<a href="https://tools.ietf.org/html/rfc6455#section-5.5.3">pong frame</a>,
|
||||
which is usually sent automatically in response to a ping frame
|
||||
from the the remote peer.
|
||||
from the remote peer.
|
||||
|
||||
@li The pong frame is written.
|
||||
|
||||
|
Reference in New Issue
Block a user