Allow disabling ping/pong?
See original GitHub issueIt would be nice if a 0
value for pingInterval
or pingTimeout
could disable ping/pong checking entirely.
When used with an abstraction layer like Primus, the ping/pong is redundant and can sometimes cause situations where engine.io terminates the connection and Primus doesn’t pick up on it. In those cases Primus might not reconnect.
Issue Analytics
- State:
- Created 9 years ago
- Comments:8 (7 by maintainers)
Top Results From Across the Web
How To Disable Ping In Linux? [Stop Ping Linux] - MonoVM
Now use the local host command to disable the ping and never forget to press CTRL+C. ping localhost. PING localhost (127.0.0.1) 56(84) bytes...
Read more >After Effects: How to Enable & Disable Expressions - YouTube
After Effects CC 2021: Toggle On ( Enable ) or Toggle Off ( Disable ) ... I added the Expression: loopOut(“ pingpong ”)which...
Read more >Official Table Tennis / Ping Pong Rules - PROShopWorld.com
As soon as the ball has been projected, the server's free arm and hand shall be removed from the space between the ball...
Read more >Table tennis rules: Everything you need to know - Olympics
If the player attempts to return the ball before it bounces, a foul is called. In singles competition, while the service rule allows...
Read more >Table Tennis Rules | Killerspin
20.5 Standing disabled players follow all standard rules; there are a few modifications for wheelchair play. Wheelchair Rules 20.6 The table shall allow...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is something we’ll have to be prepared for in every browser - Safari has been doing this for years, Chrome is next and I’m sure FF and IE are not far behind. We simply can’t rely on client timers being anywhere near reliable. I’ve seen 130+ (!) delays in Chrome 56. Word from them is that they will set a max, but the writing is on the wall.
On Jan 22, 2017 3:28 PM, “Luigi Pinca” notifications@github.com wrote:
Yes, but the client timer that sends the ping is delayed by the browser so the server incorrectly closes the connection. Imagine that you used
setTimeout(sendPing, 20000);
on the client. ThesendPing
callback is not actually called after 20 sec but after 40 sec.Hope it makes sense 😃