Fix socket thingy

This commit is contained in:
Li 2022-11-11 19:49:26 +13:00
parent 37cba8c859
commit f15b37fd08

View file

@ -122,7 +122,7 @@ namespace HISP.Server
{ {
try try
{ {
while (!GameServer.ServerSocket.AcceptAsync(e)) do
{ {
Socket eSocket = e.AcceptSocket; Socket eSocket = e.AcceptSocket;
@ -137,7 +137,7 @@ namespace HISP.Server
if (GameServer.ServerSocket == null) if (GameServer.ServerSocket == null)
return; return;
} } while (!GameServer.ServerSocket.AcceptAsync(e));
} }
catch (ObjectDisposedException ex) { Logger.ErrorPrint("Server shutdown due to " + ex.Message); } // server shutdown catch (ObjectDisposedException ex) { Logger.ErrorPrint("Server shutdown due to " + ex.Message); } // server shutdown
} }