fix(client/http): ffmpeg not works with proxy

Go's resp.Write() adds a "Content-Length: 0" header and it seems that
ffmpeg doesn't like this and immediately closes the proxy connection.

close: #1109
This commit is contained in:
Haruue 2024-05-30 22:55:39 +08:00
parent 492145c124
commit e1ac7c88ab
No known key found for this signature in database
GPG key ID: F6083B28CBCBC148

View file

@ -278,6 +278,9 @@ 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.
// NOTE: This will also cause go/http to add a "Connection: close" header, but seems to be fine.
resp.ContentLength = -1
return resp.Write(conn)
}