We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6a1af2 commit cc7823dCopy full SHA for cc7823d
listener/http/client.go
@@ -21,6 +21,7 @@ func newClient(srcConn net.Conn, tunnel C.Tunnel, additions ...inbound.Addition)
21
IdleConnTimeout: 90 * time.Second,
22
TLSHandshakeTimeout: 10 * time.Second,
23
ExpectContinueTimeout: 1 * time.Second,
24
+ DisableCompression: true, // prevents the Transport add "Accept-Encoding: gzip"
25
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
26
if network != "tcp" && network != "tcp4" && network != "tcp6" {
27
return nil, errors.New("unsupported network " + network)
0 commit comments