mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 20:47:38 +03:00
chore(client/http): rm "Connection: close" header
Magic of undocumented features.
This commit is contained in:
parent
e1ac7c88ab
commit
23b79688fb
1 changed files with 3 additions and 1 deletions
|
@ -279,8 +279,10 @@ func sendSimpleResponse(conn net.Conn, req *http.Request, statusCode int) error
|
||||||
Header: http.Header{},
|
Header: http.Header{},
|
||||||
}
|
}
|
||||||
// Remove the "Content-Length: 0" header, some clients (e.g. ffmpeg) may not like it.
|
// Remove the "Content-Length: 0" header, some clients (e.g. ffmpeg) may not like it.
|
||||||
// NOTE: This will also cause go/http to add a "Connection: close" header, but seems to be fine.
|
|
||||||
resp.ContentLength = -1
|
resp.ContentLength = -1
|
||||||
|
// Also, prevent the "Connection: close" header.
|
||||||
|
resp.Close = false
|
||||||
|
resp.Uncompressed = true
|
||||||
return resp.Write(conn)
|
return resp.Write(conn)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue