Fix: HTTP inbound proxy can't close correctly

This commit is contained in:
gVisor bot 2019-12-07 23:37:42 +08:00
parent d4ea12f7f9
commit ba7dd209fc

View File

@ -35,7 +35,6 @@ func (t *Tunnel) handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
if err != nil {
break
}
defer resp.Body.Close()
adapters.RemoveHopByHopHeaders(resp.Header)
if resp.StatusCode == http.StatusContinue {
@ -59,6 +58,7 @@ func (t *Tunnel) handleHTTP(request *adapters.HTTPAdapter, outbound net.Conn) {
break
}
// even if resp.Write write body to the connection, but some http request have to Copy to close it
buf := pool.BufPool.Get().([]byte)
_, err = io.CopyBuffer(request, resp.Body, buf)
pool.BufPool.Put(buf[:cap(buf)])