summaryrefslogtreecommitdiff
path: root/src/net/http/serve_test.go
Commit message (Collapse)AuthorAgeFilesLines
* net/http: fix benchmark goroutine leakBrad Fitzpatrick2014-11-081-0/+1
| | | | | | | | | | | New detection because of net/http now using TestMain. Fixes Issue 9033 LGTM=iant R=golang-codereviews, iant CC=adg, golang-codereviews, rsc https://codereview.appspot.com/170210043
* net/http: don't reuse a server connection after any Write errorsBrad Fitzpatrick2014-10-151-0/+97
| | | | | | | | | Fixes Issue 8534 LGTM=adg R=adg CC=golang-codereviews https://codereview.appspot.com/149340044
* net/http: enable Transfer-Encoding: identity without Content-Length for HTTP ↵James Tucker2014-09-291-0/+29
| | | | | | | | | | | | | | 1.1. Use case is SSE recommended configuration: http://www.w3.org/TR/eventsource/#notes Removes a TODO. LGTM=bradfitz R=golang-codereviews, bradfitz, tommi.virtanen CC=golang-codereviews https://codereview.appspot.com/100000044 Committer: Brad Fitzpatrick <bradfitz@golang.org>
* net/http: check for CloseWrite interface, not TCPConn implementationBrad Fitzpatrick2014-09-241-0/+23
| | | | | | | | | Fixes Issue 8724 LGTM=adg R=adg CC=golang-codereviews https://codereview.appspot.com/148040043
* build: move package sources from src/pkg to srcRuss Cox2014-09-081-0/+2944
Preparation was in CL 134570043. This CL contains only the effect of 'hg mv src/pkg/* src'. For more about the move, see golang.org/s/go14nopkg.