From 7e37c6eb7e54e99b74c340eede2b7713b352160e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20S=C5=82omkowski?= Date: Sun, 13 Dec 2015 22:35:01 +0100 Subject: [PATCH] Disable exception throwing if receive 0 bytes. #6 --- src/Transport.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Transport.cpp b/src/Transport.cpp index a65bf28..ae25046 100644 --- a/src/Transport.cpp +++ b/src/Transport.cpp @@ -314,7 +314,8 @@ void mumlib::Transport::doReceiveSsl() { } else { logger.error("SSL receiver error: %s. Bytes transferred: %d.", ec.message().c_str(), bytesTransferred); - throwTransportException("receive failed: " + ec.message()); + //todo temporarily disable exception throwing until issue #6 is solved + //throwTransportException("receive failed: " + ec.message()); } }); }