Reverts to v1.5.0

This commit reverts the changes back till https://github.com/gorilla/websocket/commit/8983b963247d87e6caf0e3b72db2539590f1b2c6.
And inherits the README.md changes of https://github.com/gorilla/websocket/commit/931041c5ee6de24fe9cba1aa16f1a0b910284d6d
Relates to:
- https://github.com/gorilla/websocket/issues/880#issuecomment-2081189055
50 files changed
tree: 0cef094486eaeb81bbc1614c26bbbbd0cb3eb391
  1. .circleci/
  2. .github/
  3. examples/
  4. .gitignore
  5. AUTHORS
  6. client.go
  7. client_server_test.go
  8. client_test.go
  9. compression.go
  10. compression_test.go
  11. conn.go
  12. conn_broadcast_test.go
  13. conn_test.go
  14. doc.go
  15. example_test.go
  16. go.mod
  17. go.sum
  18. join.go
  19. join_test.go
  20. json.go
  21. json_test.go
  22. LICENSE
  23. mask.go
  24. mask_safe.go
  25. mask_test.go
  26. prepared.go
  27. prepared_test.go
  28. proxy.go
  29. README.md
  30. server.go
  31. server_test.go
  32. tls_handshake.go
  33. tls_handshake_116.go
  34. util.go
  35. util_test.go
  36. x_net_proxy.go
README.md

Gorilla WebSocket

GoDoc CircleCI

Gorilla WebSocket is a Go implementation of the WebSocket protocol.

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.