haiswork da96f3196f init | 6 years ago | |
---|---|---|
.. | ||
.gitignore | 6 years ago | |
.travis.yml | 6 years ago | |
AUTHORS | 6 years ago | |
LICENSE | 6 years ago | |
README.md | 6 years ago | |
client.go | 6 years ago | |
client_clone.go | 6 years ago | |
client_clone_legacy.go | 6 years ago | |
compression.go | 6 years ago | |
conn.go | 6 years ago | |
conn_write.go | 6 years ago | |
conn_write_legacy.go | 6 years ago | |
doc.go | 6 years ago | |
json.go | 6 years ago | |
mask.go | 6 years ago | |
mask_safe.go | 6 years ago | |
prepared.go | 6 years ago | |
proxy.go | 6 years ago | |
server.go | 6 years ago | |
trace.go | 6 years ago | |
trace_17.go | 6 years ago | |
util.go | 6 years ago | |
x_net_proxy.go | 6 years ago |
Gorilla WebSocket is a Go implementation of the WebSocket protocol.
The Gorilla WebSocket package provides a complete and tested implementation of the WebSocket protocol. The package API is stable.
go get github.com/gorilla/websocket
The Gorilla WebSocket package passes the server tests in the Autobahn Test Suite using the application in the examples/autobahn subdirectory.
github.com/gorilla | golang.org/x/net | |
---|---|---|
RFC 6455 Features | ||
Passes Autobahn Test Suite | Yes | No |
Receive fragmented message | Yes | No, see note 1 |
Send close message | Yes | No |
Send pings and receive pongs | Yes | No |
Get the type of a received data message | Yes | Yes, see note 2 |
Other Features | ||
Compression Extensions | Experimental | No |
Read message using io.Reader | Yes | No, see note 3 |
Write message using io.WriteCloser | Yes | No, see note 3 |
Notes: