[Modify] Remove it

This commit is contained in:
sta 2021-10-01 19:13:30 +09:00
parent 01714eb274
commit 464db404c7

View File

@ -297,25 +297,6 @@ namespace WebSocketSharp.Server
#region Private Methods
private Dictionary<string, Dictionary<string, bool>> broadping (
byte[] frameAsBytes, TimeSpan timeout
)
{
var ret = new Dictionary<string, Dictionary<string, bool>> ();
foreach (var host in Hosts) {
if (_state != ServerState.Start) {
_log.Error ("The server is shutting down.");
break;
}
var res = host.Sessions.Broadping (frameAsBytes, timeout);
ret.Add (host.Path, res);
}
return ret;
}
private bool canSet (out string message)
{
message = null;