Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions include/boost/beast/http/impl/read.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class read_some_op : asio::coroutine
{
cont_ = true;
// VFALCO This was read_size_or_throw
auto const size = read_size(b_, 65536);
auto const size = read_size(b_, 128*1024);
if(size == 0)
{
BOOST_BEAST_ASSIGN_EC(ec, error::buffer_overflow);
Expand Down Expand Up @@ -352,7 +352,7 @@ read_some(SyncReadStream& s, DynamicBuffer& b, basic_parser<isRequest>& p, error

do_read:
// VFALCO This was read_size_or_throw
auto const size = read_size(b, 65536);
auto const size = read_size(b, 128*1024);
if(size == 0)
{
BOOST_BEAST_ASSIGN_EC(ec, error::buffer_overflow);
Expand Down