Skip to content

Commit cc7823d

Browse files
committedJul 24, 2024
fix: remove unneeded http proxy compression
1 parent d6a1af2 commit cc7823d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎listener/http/client.go

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ func newClient(srcConn net.Conn, tunnel C.Tunnel, additions ...inbound.Addition)
2121
IdleConnTimeout: 90 * time.Second,
2222
TLSHandshakeTimeout: 10 * time.Second,
2323
ExpectContinueTimeout: 1 * time.Second,
24+
DisableCompression: true, // prevents the Transport add "Accept-Encoding: gzip"
2425
DialContext: func(context context.Context, network, address string) (net.Conn, error) {
2526
if network != "tcp" && network != "tcp4" && network != "tcp6" {
2627
return nil, errors.New("unsupported network " + network)

0 commit comments

Comments
 (0)