mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
Fix socket thingy
This commit is contained in:
parent
37cba8c859
commit
f15b37fd08
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue