go-socket.io
go-socket.io copied to clipboard
socket.io library for golang, a realtime application framework.
i use [email protected] in go module,but it not good work ,but,i change go path ,it' good work, In short, I mean, the same library, the same code, under two different...
**Describe the bug** server.OnEvent("signaling", "Register”, func(so socketio.Conn, msg interface{}) I use the method of OnEvent like above,.but it always happen this: meet error:websocket: write closed I try to add heart...
**Describe the bug** running the demo code binary apps on centos and osx platforms in the browser using socket.io js make a connection, a runtime error shows up. when using...
``` type session struct { params base.ConnParameters manager *manager closeOnce sync.Once context interface{} upgradeLocker sync.RWMutex transport string conn base.Conn } ```
When i do something which takes a long time in. `OnEvent`. It will case a `panic: concurrent write to websocket connection` Here is my server code: ```Go server.OnEvent("/", "test", func(s...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Brief code to reproduce the behavior. **Expected behavior** A clear and concise description of what...
Hi i'am implementing a game server with this awesome library. Now i'am testing my game and if a client with very bad internet connection joined my game after a while...
Scale up
The Node.JS version of socket.io has a concept of a store, to keep track of connections: this allows it to work in a load-balanced setup. More info here: https://github.com/Automattic/socket.io/wiki/Configuring-Socket.IO#server Is...
Is it possible to count users in a room? The `socket.io` has `io.sockets.sockets.length`. I'm unable to access `namespace` in `go-socket.io`, because it is not exported. http://stackoverflow.com/questions/9352549/getting-how-many-people-are-in-a-chat-room-in-socket-io
We caught an interesting bug: the channel name area intersects with the connection name area. Accordingly, if you call channels 1,2,3, etc., then such a connection is connected to them....