chore(client/http): rm "Connection: close" header

Magic of undocumented features.
This commit is contained in:
Haruue 2024-05-30 23:12:27 +08:00
parent e1ac7c88ab
commit 23b79688fb
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -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)
} }