We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 592912b commit 02daccaCopy full SHA for 02dacca
websocket-sharp/Server/WebSocketSessionManager.cs
@@ -480,25 +480,6 @@ internal void Broadcast (
480
}
481
482
483
- internal Dictionary<string, bool> Broadping (
484
- byte[] frameAsBytes, TimeSpan timeout
485
- )
486
- {
487
- var ret = new Dictionary<string, bool> ();
488
-
489
- foreach (var session in Sessions) {
490
- if (_state != ServerState.Start) {
491
- _log.Error ("The service is shutting down.");
492
- break;
493
- }
494
495
- var res = session.Context.WebSocket.Ping (frameAsBytes, timeout);
496
- ret.Add (session.ID, res);
497
498
499
- return ret;
500
501
502
internal bool Remove (string id)
503
{
504
lock (_sync)
0 commit comments