websocket
websocket copied to clipboard
Package gorilla/websocket is a fast, well-tested and widely used WebSocket implementation for Go.
After a long time of listen(more than 10 hour), the Binance will close ws connection, and should redail the connection, if not, will receive a lot of read err msg....
Wondering if anyone is aware of complete server and client examples of JSONRPC2 + websocket using Gorilla? With all the flavors of codec and registering and other forms of indirection,...
**Describe the bug** Compiling on Linux 64 bit or Windows, the same program handles 5000 websocket clients connecting to the server just fine. But on OSX 12.4, either golang is...
**Describe the problem you're having** > A clear and concise description of what the bug is. I'm writing a server for an app that opens a websocket connection between itself...
I have a question. Is it possible to create a chat program with this web socket that supports 100,000 active users?
Fixes #739 **Summary of Changes** 1. call `proxy_RegisterDialerType` for the `https` scheme to allow communication to https proxies 2. some scheme-specific setup is necessary in Dialer's DialContext in order to...
Replaced usage of deprecated `ioutil` functions with their correct ones. More info why `ioutil` got deprecated: https://go.dev/doc/go1.16
I am stepping down as the maintainer of the gorilla/WebSocket project. I am looking for a new maintainer for the project. The new maintainer should have a track record of...
It looks like gorilla websocket intends to support https, e.g logic [here](https://github.com/gorilla/websocket/blob/9111bb834a68b893cebbbaed5060bdbc1d9ab7d2/client.go#L259). However, https is not registered during init [here](https://github.com/gorilla/websocket/blob/9111bb834a68b893cebbbaed5060bdbc1d9ab7d2/proxy.go#L24). This caused https to be considered as an unknown proxy...
Currently, as far as I can see, the only mechanism for getting a timeout on a ReadMessage call is by setting a read deadline with SetReadDeadline. This works, but if...