Catch SendFailedException when replying back in Connection::Receive()

This commit is contained in:
Perttu Ahola 2011-10-17 18:02:26 +03:00
parent 558a133044
commit 93f4d2b3f1
1 changed files with 5 additions and 0 deletions

View File

@ -1102,6 +1102,11 @@ u32 Connection::Receive(u16 &peer_id, u8 *data, u32 datasize)
if(m_socket.WaitData(0) == true)
continue;
}
catch(SendFailedException &e)
{
derr_con<<"Receive(): SendFailedException; peer_id="
<<peer_id<<std::endl;
}
} // for
}