1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-27 09:55:22 +00:00

only keep connection alive when content length is known

This commit is contained in:
Darien Raymond 2017-04-18 13:39:34 +02:00
parent 72d5d68443
commit 18904e9adb
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -236,10 +236,12 @@ func (s *Server) handlePlainHTTP(ctx context.Context, request *http.Request, rea
response, err := http.ReadResponse(responseReader, request)
if err == nil {
StripHopByHopHeaders(response.Header)
response.Header.Set("Proxy-Connection", "keep-alive")
response.Header.Set("Connection", "keep-alive")
response.Header.Set("Keep-Alive", "timeout=4")
response.Close = false
if response.ContentLength >= 0 {
response.Header.Set("Proxy-Connection", "keep-alive")
response.Header.Set("Connection", "keep-alive")
response.Header.Set("Keep-Alive", "timeout=4")
response.Close = false
}
} else {
log.Trace(newError("failed to read response from ", request.Host).Base(err).AtWarning())
response = &http.Response{