You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem together with the code samples can be found here: socket.io client using Go and for the next few days there is an open bounty worth +100 reputation.
My question is if golang-socketio implements the following steps to establish a connection.
The problem together with the code samples can be found here: socket.io client using Go and for the next few days there is an open bounty worth
+100
reputation.My question is if golang-socketio implements the following steps to establish a connection.
From: Engine.IO Protocol
Anatomy of an Engine.IO session
open
packet with JSON-encoded handshake data:sid
session id (String
)upgrades
possible transport upgrades (Array
ofString
)pingTimeout
server configured ping timeout, used for the clientto detect that the server is unresponsive (
Number
)pingInterval
server configured ping interval, used for the clientto detect that the server is unresponsive (
Number
)ping
packets sent by the clientwith
pong
packets.message
packets at will.close
packet to close the socket, sincethey're expected to be "opening" and "closing" all the time.
The text was updated successfully, but these errors were encountered: