good morning!!!!

Skip to content
Snippets Groups Projects
Unverified Commit 5dd228a4 authored by Anmol Sethi's avatar Anmol Sethi
Browse files

compress.go: Add back comment about Safari compat layer being disabled

parent 7a37b6a5
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,12 @@ import ( ...@@ -12,6 +12,12 @@ import (
// CompressionMode represents the modes available to the deflate extension. // CompressionMode represents the modes available to the deflate extension.
// See https://tools.ietf.org/html/rfc7692 // See https://tools.ietf.org/html/rfc7692
//
// A compatibility layer is implemented for the older deflate-frame extension used
// by safari. See https://tools.ietf.org/html/draft-tyoshino-hybi-websocket-perframe-deflate-06
// It will work the same in every way except that we cannot signal to the peer we
// want to use no context takeover on our side, we can only signal that they should.
// But it is currently disabled due to Safari bugs. See https://github.com/nhooyr/websocket/issues/218
type CompressionMode int type CompressionMode int
const ( const (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment