Merge pull request #1110 from apernet/fix-http-connect-header

fix(client/http): ffmpeg not works with proxy
This commit is contained in:
Toby 2024-05-30 12:04:01 -07:00 committed by GitHub
commit 52c8f82c2b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -278,6 +278,11 @@ func sendSimpleResponse(conn net.Conn, req *http.Request, statusCode int) error
ProtoMinor: req.ProtoMinor,
Header: http.Header{},
}
// Remove the "Content-Length: 0" header, some clients (e.g. ffmpeg) may not like it.
resp.ContentLength = -1
// Also, prevent the "Connection: close" header.
resp.Close = false
resp.Uncompressed = true
return resp.Write(conn)
}