aboutsummaryrefslogtreecommitdiff
path: root/src/pkg/net/http/server.go
AgeCommit message (Expand)Author
2014-05-16net/http: allow Content-Type on 204 responsesBrad Fitzpatrick
2014-04-25net/http, strings, bytes: fix http race, revert part of Reader behavior changeBrad Fitzpatrick
2014-04-10net/http: don't reject 0-lengthed bodies with Expect 100-continueBrad Fitzpatrick
2014-03-03net/http: fix location of StateHijacked and StateActiveBrad Fitzpatrick
2014-03-01net/http: ensure ConnState for StateNew fires before Server.Serve returnsRichard Crowley
2014-02-28net/http: add Server.ErrorLog; log and test TLS handshake errorsBrad Fitzpatrick
2014-02-28net/http: add Server.SetKeepAlivesEnabledBrad Fitzpatrick
2014-02-27net/http: add optional Server.ConnState callbackBrad Fitzpatrick
2014-02-14net/http: increase panic stack trace buffer size from 4 KB to 64 KB.David Symonds
2014-01-16net/http: don't allow Content-Type or body on 204 and 1xxBrad Fitzpatrick
2014-01-14net/http: fix another data race when sharing Request.BodyBrad Fitzpatrick
2014-01-09net/http: use TCP keep-alives for ListenAndServe and ListenAndServeTLSBrad Fitzpatrick
2013-12-26net/http: Release reference to chunkWriter's bufio.Writer on hijackJohn Newlin
2013-12-18net/http: use sync.PoolBrad Fitzpatrick
2013-10-15net/http: skip content-type sniffing if the header is explicitly unset.Michael Piatek
2013-09-22net/http: send correct time in Date header.Dmitry Chestnykh
2013-09-12net/http: document ServeMux handling of pattern "/"Brad Fitzpatrick
2013-08-29net/http: redirect handlers from mux.Handler() shouldn't clear the query stringShenghou Ma
2013-08-19net/http: support WriteString on the ResponseWriterBrad Fitzpatrick
2013-08-15net/http: don't send an automatic Content-Length on a 304 Not ModifiedBrad Fitzpatrick
2013-08-10net/http: simplify server, use bufio Reader.Reset and Writer.ResetBrad Fitzpatrick
2013-08-08net/http: fix early side effects in the ResponseWriter's ReadFromBrad Fitzpatrick
2013-08-06net/http: do not send redundant Connection: close header in HTTP/1.0 responsesJosh Bleecher Snyder
2013-08-06net/http: treat HEAD requests like GET requestsBrad Fitzpatrick
2013-08-05undo CL 12486043 / ab644299d124Brad Fitzpatrick
2013-08-05all: use strings.IndexByte instead of Index where possibleBrad Fitzpatrick
2013-08-01net/http: document that Error is to be used with plain textAndrew Balholm
2013-07-31net/http: don't MIME sniff if handler set an empty string Content-TypeBrad Fitzpatrick
2013-07-23all: be more idiomatic when documenting boolean return values.Rob Pike
2013-05-20net/http: use WriteString directly when possibleBrad Fitzpatrick
2013-05-20net/http: simplify transfer body; reduces allocations tooBrad Fitzpatrick
2013-05-19net/http: fewer allocations in the server pathBrad Fitzpatrick
2013-04-24all: fix typosShenghou Ma
2013-04-22net/http: make CloseNotifier channel buffered to not leak goroutinesBrad Fitzpatrick
2013-04-20net/http: fix a panic in RedirectBrad Fitzpatrick
2013-04-04net/http: remove some obsolete TODOsBrad Fitzpatrick
2013-04-02net/http: fewer allocations in chunkWriter.WriteHeaderBrad Fitzpatrick
2013-03-28net/http: inline chunkWriter in responseBrad Fitzpatrick
2013-03-28net/http: remove two more server allocations per-requestBrad Fitzpatrick
2013-03-28net/http: more tests, better comments, remove an allocationBrad Fitzpatrick
2013-03-27net/http: server optimization; reduce GCs, generate ~half the garbageBrad Fitzpatrick
2013-03-21net/http: reuse bufio.Reader and bufio.Writer between connsBrad Fitzpatrick
2013-03-20src/pkg: fixed various typosRobert Griesemer
2013-03-18net/http: add StripPrefix example; simplify codeBrad Fitzpatrick
2013-03-11all: remove now-unnecessary unreachable panicsBrad Fitzpatrick
2013-02-26net/http: fix a bunch of test leaksBrad Fitzpatrick
2013-02-04net/http: fix Server blocking after a Handler's Write failsBrad Fitzpatrick
2013-02-04net/http: add Next Protocol Negotation upgrade support to the ServerBrad Fitzpatrick
2013-02-04net/http: fix when server deadlines get extendedBrad Fitzpatrick
2013-01-16net/http: Serve creates service goroutines, not service threadsMatthew Dempsky