re-add special handling for TimeoutException

This commit is contained in:
Günter Obiltschnig 2018-02-21 19:12:12 +01:00
parent de0f5a6b76
commit e5f71bb085

View File

@ -72,6 +72,10 @@ int ICMPSocketImpl::receiveFrom(void*, int, SocketAddress& address, int flags)
}
while (!_icmpPacket.validReplyID(buffer.begin(), maxPacketSize));
}
catch (TimeoutException&)
{
throw;
}
catch (Exception&)
{
std::string err = _icmpPacket.errorDescription(buffer.begin(), maxPacketSize);