Misc fixes.

This commit is contained in:
hondacrx
2021-02-09 10:33:35 -05:00
parent 710d7c2fbd
commit 4bfc02f1f3
4 changed files with 27 additions and 5 deletions
+4 -3
View File
@@ -64,8 +64,10 @@ namespace Framework.Networking
AsyncAcceptSocket(mgrHandler);
}
}
catch (ObjectDisposedException)
{ }
catch (ObjectDisposedException ex)
{
Log.outException(ex);
}
}
public void Close()
@@ -74,7 +76,6 @@ namespace Framework.Networking
return;
_closed = true;
_listener.Stop();
}
}
}