[Modify] Polish it

This commit is contained in:
sta 2022-01-10 21:13:39 +09:00
parent 95d96fa06c
commit 45e8d444a2

View File

@ -830,7 +830,7 @@ namespace WebSocketSharp.Server
if (_state == ServerState.ShuttingDown) { if (_state == ServerState.ShuttingDown) {
_log.Info ("The underlying listener is stopped."); _log.Info ("The underlying listener is stopped.");
break; return;
} }
_log.Fatal (ex.Message); _log.Fatal (ex.Message);
@ -845,12 +845,14 @@ namespace WebSocketSharp.Server
if (cl != null) if (cl != null)
cl.Close (); cl.Close ();
if (_state == ServerState.ShuttingDown)
return;
break; break;
} }
} }
if (_state != ServerState.ShuttingDown) abort ();
abort ();
} }
private void start () private void start ()