You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,14 @@
1
1
# `gows`
2
-
Simple WebSocket ([RFC6455](https://datatracker.ietf.org/doc/rfc6455/)) library in Go
2
+
Barebones WebSocket ([RFC6455](https://datatracker.ietf.org/doc/rfc6455/)) library in Go
3
3
4
4
**What it offers:**
5
5
- Simple way to upgrade an HTTP connection to a WebSocket connection
6
-
-Simple way to serialize and deserialize individual WebSocket frames
6
+
-Functions to serialize and deserialize individual WebSocket frames
7
7
8
8
**What it doesn't do:**
9
9
- Doesn't handle message fragmentation, but you can do that yourself by reading `Fin` and `Opcode`. For more information, see section 5.4 of [RFC6455](https://datatracker.ietf.org/doc/rfc6455/)
10
-
- Doesn't automatically respond to PING frames.
10
+
- Doesn't automatically respond to PING frames
11
+
- Doesn't really offer an opinion on how to handle opcodes or other flags at all
0 commit comments