2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-06-27 13:33:13 +00:00
This commit is contained in:
2019-11-11 12:50:10 +03:00
parent 5e87ea5247
commit 238ac2563b
5 changed files with 19 additions and 7 deletions

View File

@ -294,7 +294,14 @@ namespace Esiur.Net
c.Assign(sock);
ClientConnected(c);
try
{
ClientConnected(c);
}
catch
{
// something wrong with the child.
}
// Accept more
listener.Accept().Then(NewConnection);