We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a37b6a commit 5dd228aCopy full SHA for 5dd228a
compress.go
@@ -12,6 +12,12 @@ import (
12
13
// CompressionMode represents the modes available to the deflate extension.
14
// See https://tools.ietf.org/html/rfc7692
15
+//
16
+// A compatibility layer is implemented for the older deflate-frame extension used
17
+// by safari. See https://tools.ietf.org/html/draft-tyoshino-hybi-websocket-perframe-deflate-06
18
+// It will work the same in every way except that we cannot signal to the peer we
19
+// want to use no context takeover on our side, we can only signal that they should.
20
+// But it is currently disabled due to Safari bugs. See https://github.com/nhooyr/websocket/issues/218
21
type CompressionMode int
22
23
const (
0 commit comments