mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-03 07:56:42 -05:00
force http2 server to send back plain encoding.
This commit is contained in:
parent
93d095c766
commit
a7103481d5
@ -97,7 +97,11 @@ func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error
|
|||||||
Proto: "HTTP/2",
|
Proto: "HTTP/2",
|
||||||
ProtoMajor: 2,
|
ProtoMajor: 2,
|
||||||
ProtoMinor: 0,
|
ProtoMinor: 0,
|
||||||
|
Header: make(http.Header),
|
||||||
}
|
}
|
||||||
|
// Disable any compression method from server.
|
||||||
|
request.Header.Set("Accept-Encoding", "identity")
|
||||||
|
|
||||||
response, err := client.Do(request)
|
response, err := client.Do(request)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, newError("failed to dial to ", dest).Base(err).AtWarning()
|
return nil, newError("failed to dial to ", dest).Base(err).AtWarning()
|
||||||
|
Loading…
Reference in New Issue
Block a user