mirror of
https://github.com/boostorg/beast.git
synced 2025-07-29 20:37:31 +02:00
Write buffer option does not change capacity
This commit is contained in:
@ -7,6 +7,10 @@ HTTP
|
||||
* Check invariants in parse_op:
|
||||
* Clean up message docs
|
||||
|
||||
WebSocket
|
||||
|
||||
* Write buffer option does not change capacity
|
||||
|
||||
Core
|
||||
|
||||
* Meet DynamicBuffer requirements for static_streambuf
|
||||
@ -17,7 +21,6 @@ Extras
|
||||
- New overload of fail() specifies file and line
|
||||
- BEAST_EXPECTS only evaluates the reason string on a failure
|
||||
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
1.0.0-b17
|
||||
|
@ -235,12 +235,11 @@ public:
|
||||
rd_msg_max_ = o.value;
|
||||
}
|
||||
|
||||
/// Set the size of the mask buffer
|
||||
/// Set the size of the write buffer
|
||||
void
|
||||
set_option(write_buffer_size const& o)
|
||||
{
|
||||
wr_buf_size_ = o.value;
|
||||
stream_.capacity(o.value);
|
||||
}
|
||||
|
||||
/** Get the io_service associated with the stream.
|
||||
|
Reference in New Issue
Block a user