aboutsummaryrefslogtreecommitdiff
path: root/src/net/http/server.go
AgeCommit message (Expand)Author
2017-03-22net/http: improve speed of default muxKenny Grant
2017-02-17all: fix a few typos in commentsKoki Ide
2017-02-14net/http: document ErrServerClosedKale Blankenship
2017-02-08net/http: don't modify Request in StripPrefixDmitri Shuralyov
2017-01-13net/http: make sure Hijack's bufio.Reader includes pre-read background byteBrad Fitzpatrick
2017-01-07net/http: don't do a background read if we've already done oneIan Lance Taylor
2017-01-04net/http: make Server cancel its ReadTimeout between requestsBrad Fitzpatrick
2016-11-30net/http: remove logging on bad client requestsKenny Grant
2016-11-24net/http: fix receiver for Server.Shutdown and Server.CloseDan Peterson
2016-11-11net/http: make Server respect shutdown state after handler finishesBrad Fitzpatrick
2016-11-11net/http: make Server log on bad requests from clientsKenny Grant
2016-11-10net/http: update bundled http2 for ErrAbortHandler support, document it moreBrad Fitzpatrick
2016-11-10net/http: add ErrAbortHandler, make Server quiet if used as panic valueBrad Fitzpatrick
2016-11-10net/http: document that Server.Close and Shutdown don't track hijacked connsBrad Fitzpatrick
2016-11-10net/http: fix documentation on Server.TLSNextProto controlling http2Brad Fitzpatrick
2016-11-10net/http: fix Server.Close double LockBrad Fitzpatrick
2016-11-04net/http: fix type name in commentBrad Fitzpatrick
2016-11-01net/http, net/http/httptest: make http2's TrailerPrefix work for http1Brad Fitzpatrick
2016-11-01net/http: add Server.Close & Server.Shutdown for forced & graceful shutdownBrad Fitzpatrick
2016-10-26net/http: add Server.ReadHeaderTimeout, IdleTimeout, document WriteTimeoutBrad Fitzpatrick
2016-10-22net/http: add NoBody, don't return nil from NewRequest on zero bodiesBrad Fitzpatrick
2016-10-21net/http: make Redirect escape non-ASCII in Location headerBrad Fitzpatrick
2016-10-18net/http: make Server Handler's Request.Context be done on conn errorsBrad Fitzpatrick
2016-10-17net/http: add more docs on ErrHijackedBrad Fitzpatrick
2016-10-13net/http: allow Handlers to test Hijacked conn without spamming error logBrad Fitzpatrick
2016-10-10net/http: fix typo in server commontEmmanuel Odeke
2016-09-30net/http: remove TODO about the Server's base contextBrad Fitzpatrick
2016-07-27net/http: fix data race with concurrent use of Server.ServeBrad Fitzpatrick
2016-07-13all: rename vendored golang.org/x/net packages to golang_orgBrad Fitzpatrick
2016-07-11net/http: fix vet warning of leaked context in error pathsBrad Fitzpatrick
2016-06-28net/http: conditionally configure HTTP/2 in Server.Serve(Listener)Brad Fitzpatrick
2016-06-27net/http: reject faux HTTP/0.9 and HTTP/2+ requestsBrad Fitzpatrick
2016-06-15net/http: pass through server side Transfer-Encoding headersAndrew Gerrand
2016-06-06net/http: send StatusOK on empty body with TimeoutHandlerAndrew Gerrand
2016-06-06net/http: send one Transfer-Encoding header when "chunked" set manuallyAndrew Gerrand
2016-05-19net/http: update bundled http2Brad Fitzpatrick
2016-05-16net/http: mention ALPN in http.Server.TLSNextProto documentationDan Peterson
2016-05-11net/http: keep HTTP/1.0 keep-alive conns open if response can't have a bodyBrad Fitzpatrick
2016-05-11net/http: document ResponseWriter read-vs-write concurrency rulesBrad Fitzpatrick
2016-05-01net/http: provide access to the listener address an HTTP request arrived onBrad Fitzpatrick
2016-05-01net/http: document some errors more, mark ErrWriteAfterFlush as unusedBrad Fitzpatrick
2016-04-30net/http: expand documentation of Server.MaxHeaderBytesBrad Fitzpatrick
2016-04-18net/http: document Hijacker and Flusher moreBrad Fitzpatrick
2016-04-12all: standardize RFC mention formatDan Peterson
2016-04-11net/http: add ServerContextKey to let a handler access its ServerBrad Fitzpatrick
2016-04-11net/http: document Error does not end the requestDan Peterson
2016-04-11net/http: set the Request context for incoming server requestsBrad Fitzpatrick
2016-04-06net/http: document that Handlers shouldn't mutate RequestBrad Fitzpatrick
2016-04-05net/http: zero pad Response status codes to three digitsBrad Fitzpatrick
2016-04-01net/http: limit Transport's reading of response header bytes from serversBrad Fitzpatrick