[Modify] Replace it

This commit is contained in:
sta 2017-01-17 15:30:23 +09:00
parent fa30a602e1
commit cd017fab27

View File

@ -1025,25 +1025,7 @@ namespace WebSocketSharp.Server
/// </summary> /// </summary>
public void Stop () public void Stop ()
{ {
string msg; stop (1005, String.Empty);
if (!checkIfAvailable (false, true, false, false, out msg)) {
_logger.Error (msg);
return;
}
lock (_sync) {
if (!checkIfAvailable (false, true, false, false, out msg)) {
_logger.Error (msg);
return;
}
_state = ServerState.ShuttingDown;
}
stopReceiving (5000);
_services.Stop (new CloseEventArgs (), true, true);
_state = ServerState.Stop;
} }
/// <summary> /// <summary>