SandpointsGitHook/vendor/github.com/gorilla/websocket
2023-07-29 01:10:04 +02:00
..
.gitignore new vendor... 2021-03-20 23:21:23 +01:00
AUTHORS new vendor... 2021-03-20 23:21:23 +01:00
client.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
compression.go new vendor... 2021-03-20 23:21:23 +01:00
conn.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
doc.go new vendor... 2021-03-20 23:21:23 +01:00
join.go new vendor... 2021-03-20 23:21:23 +01:00
json.go new vendor... 2021-03-20 23:21:23 +01:00
LICENSE new vendor... 2021-03-20 23:21:23 +01:00
mask.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
mask_safe.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
prepared.go new vendor... 2021-03-20 23:21:23 +01:00
proxy.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
README.md compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
server.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
tls_handshake.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
tls_handshake_116.go compile with patched hugo for footnotes... 2023-07-29 01:10:04 +02:00
util.go new vendor... 2021-03-20 23:21:23 +01:00
x_net_proxy.go new vendor... 2021-03-20 23:21:23 +01:00

# Gorilla WebSocket

[![GoDoc](https://godoc.org/github.com/gorilla/websocket?status.svg)](https://godoc.org/github.com/gorilla/websocket)
[![CircleCI](https://circleci.com/gh/gorilla/websocket.svg?style=svg)](https://circleci.com/gh/gorilla/websocket)

Gorilla WebSocket is a [Go](http://golang.org/) implementation of the
[WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) protocol.


---

⚠️ **[The Gorilla WebSocket Package is looking for a new maintainer](https://github.com/gorilla/websocket/issues/370)**

---

### Documentation

* [API Reference](https://pkg.go.dev/github.com/gorilla/websocket?tab=doc)
* [Chat example](https://github.com/gorilla/websocket/tree/master/examples/chat)
* [Command example](https://github.com/gorilla/websocket/tree/master/examples/command)
* [Client and server example](https://github.com/gorilla/websocket/tree/master/examples/echo)
* [File watch example](https://github.com/gorilla/websocket/tree/master/examples/filewatch)

### Status

The Gorilla WebSocket package provides a complete and tested implementation of
the [WebSocket](http://www.rfc-editor.org/rfc/rfc6455.txt) 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](https://github.com/crossbario/autobahn-testsuite) using the application in the [examples/autobahn
subdirectory](https://github.com/gorilla/websocket/tree/master/examples/autobahn).