baishaojie dcf2cbd820 first commit | пре 11 месеци | |
---|---|---|
.. | ||
.gitignore | пре 11 месеци | |
AUTHORS | пре 11 месеци | |
LICENSE | пре 11 месеци | |
README.md | пре 11 месеци | |
client.go | пре 11 месеци | |
client_clone.go | пре 11 месеци | |
client_clone_legacy.go | пре 11 месеци | |
compression.go | пре 11 месеци | |
conn.go | пре 11 месеци | |
conn_write.go | пре 11 месеци | |
conn_write_legacy.go | пре 11 месеци | |
doc.go | пре 11 месеци | |
go.mod | пре 11 месеци | |
go.sum | пре 11 месеци | |
join.go | пре 11 месеци | |
json.go | пре 11 месеци | |
mask.go | пре 11 месеци | |
mask_safe.go | пре 11 месеци | |
prepared.go | пре 11 месеци | |
proxy.go | пре 11 месеци | |
server.go | пре 11 месеци | |
trace.go | пре 11 месеци | |
trace_17.go | пре 11 месеци | |
util.go | пре 11 месеци | |
x_net_proxy.go | пре 11 месеци |
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 |