Commit 80b5e3d7 authored by deepakverma's avatar deepakverma

fix #50

parent 02ae9601
......@@ -523,6 +523,8 @@ static void WriteUnified(Stream stream, long value)
void BeginReading()
{
bool keepReading;
try
{
do
{
keepReading = false;
......@@ -536,6 +538,11 @@ void BeginReading()
}
} while (keepReading);
}
catch(System.IO.IOException ex)
{
multiplexer.Trace("Could not connect: " + ex.Message, physicalName);
}
}
int haveReader;
internal int GetAvailableInboundBytes(out int activeReaders)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment