[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) {
_log.Info ("The underlying listener is stopped.");
break;
return;
}
_log.Fatal (ex.Message);
@ -845,11 +845,13 @@ namespace WebSocketSharp.Server
if (cl != null)
cl.Close ();
if (_state == ServerState.ShuttingDown)
return;
break;
}
}
if (_state != ServerState.ShuttingDown)
abort ();
}