From: Brad Fitzpatrick Date: Fri, 30 Nov 2012 02:00:51 +0000 (-0800) Subject: net/http: don't send chunked encoding on 204 responses X-Git-Tag: go1.1rc2~1750 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=9c2f410206221473a9773849ab9749c6602ce11a;p=gostls13.git net/http: don't send chunked encoding on 204 responses RFC 2616: "The 204 response MUST NOT include a message-body, and thus is always terminated by the first empty line after the header fields." Previously we'd trigger chunked encoding by default on responses, and then when finishing the request we'd write the chunk trailers, which counted as a message-body. Fixes #4454 R=golang-dev CC=golang-dev https://golang.org/cl/6782139 --- diff --git a/src/pkg/net/http/server.go b/src/pkg/net/http/server.go index b50c03ed3a..f786e81b9f 100644 --- a/src/pkg/net/http/server.go +++ b/src/pkg/net/http/server.go @@ -369,6 +369,8 @@ func (w *response) WriteHeader(code int) { if w.req.Method == "HEAD" || code == StatusNotModified { // do nothing + } else if code == StatusNoContent { + w.header.Del("Transfer-Encoding") } else if hasCL { w.contentLength = contentLength w.header.Del("Transfer-Encoding") diff --git a/src/pkg/net/http/transport_test.go b/src/pkg/net/http/transport_test.go index 2f4eb88f96..e49f14fa58 100644 --- a/src/pkg/net/http/transport_test.go +++ b/src/pkg/net/http/transport_test.go @@ -857,6 +857,30 @@ func TestIssue3595(t *testing.T) { } } +// From http://golang.org/issue/4454 , +// "client fails to handle requests with no body and chunked encoding" +func TestChunkedNoContent(t *testing.T) { + ts := httptest.NewServer(HandlerFunc(func(w ResponseWriter, r *Request) { + w.WriteHeader(StatusNoContent) + })) + defer ts.Close() + + for _, closeBody := range []bool{true, false} { + c := &Client{Transport: &Transport{}} + const n = 4 + for i := 1; i <= n; i++ { + res, err := c.Get(ts.URL) + if err != nil { + t.Errorf("closingBody=%v, req %d/%d: %v", closeBody, i, n, err) + } else { + if closeBody { + res.Body.Close() + } + } + } + } +} + func TestTransportConcurrency(t *testing.T) { const maxProcs = 16 const numReqs = 500