mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-27 11:17:49 +02:00
don't throw exception
This commit is contained in:
parent
97ec65cccd
commit
10b733d215
2 changed files with 4 additions and 3 deletions
3
SSU.cpp
3
SSU.cpp
|
@ -163,7 +163,8 @@ namespace transport
|
|||
std::vector<SSUPacket *> packets;
|
||||
packets.push_back (packet);
|
||||
|
||||
size_t moreBytes = m_Socket.available();
|
||||
boost::system::error_code ec;
|
||||
size_t moreBytes = m_Socket.available(ec);
|
||||
while (moreBytes && packets.size () < 25)
|
||||
{
|
||||
packet = new SSUPacket ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue