mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-03-07 06:09:42 +00:00
correct buffer size for ipv6 SOCKS proxy reply
This commit is contained in:
@@ -1708,7 +1708,7 @@ namespace transport
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
boost::asio::async_read(conn->GetSocket(), boost::asio::buffer(readbuff->data (), 10),
|
boost::asio::async_read(conn->GetSocket(), boost::asio::buffer(readbuff->data (), sz),
|
||||||
[timer, conn, sz, readbuff](const boost::system::error_code & e, std::size_t transferred)
|
[timer, conn, sz, readbuff](const boost::system::error_code & e, std::size_t transferred)
|
||||||
{
|
{
|
||||||
if(e)
|
if(e)
|
||||||
|
|||||||
Reference in New Issue
Block a user