File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,6 @@ go get nhooyr.io/websocket@v0.2.0
27
27
## Roadmap
28
28
29
29
- [ ] WebSockets over HTTP/2 [ #4 ] ( https://github.com/nhooyr/websocket/issues/4 )
30
- - [ ] Deflate extension support [ #5 ] ( https://github.com/nhooyr/websocket/issues/5 )
31
30
32
31
## Examples
33
32
@@ -89,6 +88,8 @@ c.Close(websocket.StatusNormalClosure, "")
89
88
- net.Conn is never exposed as WebSocket over HTTP/2 will not have a net.Conn.
90
89
- Using net/http's Client for dialing means we do not have to reinvent dialing hooks
91
90
and configurations like other WebSocket libraries
91
+ - We do not support the compression extension because Go's compress/flate library is very memory intensive
92
+ and browsers do not handle WebSocket compression intelligently. See [ #5 ] ( https://github.com/nhooyr/websocket/issues/5 )
92
93
93
94
## Comparison
94
95
You can’t perform that action at this time.
0 commit comments