1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/vendor/github.com/gorilla/websocket
Zack Scholl e8a4d30139 Now vendored, with Bolt v1.2.0
Former-commit-id: 900e1a398fd82aa1cea4f319e89b8088dd81cf6c [formerly f172c22b12c49c0291e0d986dc4af94fcc91d192] [formerly 43c5da81442a5f0ca79a6eabb1dfdfbfb3f22680 [formerly 2694d0b183]]
Former-commit-id: fa39d6a984adc4ca8f8c82c5df145c336885a53f [formerly 94543f8081bc18b1a39daf8500cfa7e0b1ba7393]
Former-commit-id: 809aae62e28a3f99a01854f71fcd5a85f89d2972
2017-01-31 08:05:27 -05:00
..
.gitignore Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
.travis.yml Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
AUTHORS Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
client.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
compression.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
conn_read_legacy.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
conn_read.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
conn.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
doc.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
json.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
LICENSE Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
mask_safe.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
mask.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
README.md Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
server.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00
util.go Now vendored, with Bolt v1.2.0 2017-01-31 08:05:27 -05:00

Gorilla WebSocket

Gorilla WebSocket is a Go implementation of the WebSocket protocol.

Build Status GoDoc

Documentation

Status

The Gorilla WebSocket package provides a complete and tested implementation of the WebSocket protocol. The package API is stable.

Installation

go get github.com/gorilla/websocket

Protocol Compliance

The Gorilla WebSocket package passes the server tests in the Autobahn Test Suite using the application in the examples/autobahn subdirectory.

Gorilla WebSocket compared with other packages

github.com/gorilla golang.org/x/net
RFC 6455 Features
Passes Autobahn Test SuiteYesNo
Receive fragmented messageYesNo, see note 1
Send close messageYesNo
Send pings and receive pongsYesNo
Get the type of a received data messageYesYes, see note 2
Other Features
Compression ExtensionsExperimentalNo
Read message using io.ReaderYesNo, see note 3
Write message using io.WriteCloserYesNo, see note 3

Notes:

  1. Large messages are fragmented in Chrome's new WebSocket implementation.
  2. The application can get the type of a received data message by implementing a Codec marshal function.
  3. The go.net io.Reader and io.Writer operate across WebSocket frame boundaries. Read returns when the input buffer is full or a frame boundary is encountered. Each call to Write sends a single frame message. The Gorilla io.Reader and io.WriteCloser operate on a single WebSocket message.