summaryrefslogtreecommitdiff
path: root/src/net/http/server.go
Commit message (Expand)AuthorAgeFilesLines
* net/http: document that after Hijack, Request.Body is invalidBrad Fitzpatrick2017-07-211-0/+3
* net/http: improve signature of Redirect, NewRequestDmitri Shuralyov2017-07-201-14/+19
* net/http: fix parameter name in commentIan Lance Taylor2017-07-181-1/+1
* net/http: clarify Handler panic behavior across HTTP versionsBrad Fitzpatrick2017-07-141-3/+4
* net/http: Update server idleTimeout documentationQiuxuan Zhu2017-06-231-1/+1
* net/http: add Server.ServeTLS methodNiklas Schnelle2017-06-081-28/+64
* net/http: revert CL 43779Emmanuel Odeke2017-05-251-9/+0
* net/http: permit incoming CONNECT requests without Host headersBrad Fitzpatrick2017-05-241-1/+1
* net/http: Add Server.RegisterOnShutdownTom Bergan2017-05-231-0/+15
* net/http: make ServeMux preserve query string during redirectsEmmanuel Odeke2017-05-221-0/+9
* net/http: for http2, use the priority write scheduler by defaultTom Bergan2017-05-111-1/+4
* net/http: bgErr is unused; remove itChris Manghane2017-05-021-6/+0
* net/http: re-simplify HTTP/1.x status line writingBrad Fitzpatrick2017-04-281-45/+22
* net/http: make LocalAddrContext handle wildcard interfaceMichael Fraenkel2017-04-261-1/+1
* net/http: document Shutdown/Serve return behaviorFilippo Valsorda2017-04-241-1/+6
* net/http: strip port from host in mux HandlerKenny Grant2017-03-241-9/+33
* net/http: improve speed of default muxKenny Grant2017-03-221-2/+9
* all: fix a few typos in commentsKoki Ide2017-02-171-1/+1
* net/http: document ErrServerClosedKale Blankenship2017-02-141-0/+2
* net/http: don't modify Request in StripPrefixDmitri Shuralyov2017-02-081-2/+6
* net/http: make sure Hijack's bufio.Reader includes pre-read background byteBrad Fitzpatrick2017-01-131-1/+9
* net/http: don't do a background read if we've already done oneIan Lance Taylor2017-01-071-0/+3
* net/http: make Server cancel its ReadTimeout between requestsBrad Fitzpatrick2017-01-041-0/+1
* net/http: remove logging on bad client requestsKenny Grant2016-11-301-2/+0
* net/http: fix receiver for Server.Shutdown and Server.CloseDan Peterson2016-11-241-15/+15
* net/http: make Server respect shutdown state after handler finishesBrad Fitzpatrick2016-11-111-0/+8
* net/http: make Server log on bad requests from clientsKenny Grant2016-11-111-8/+29
* net/http: update bundled http2 for ErrAbortHandler support, document it moreBrad Fitzpatrick2016-11-101-1/+3
* net/http: add ErrAbortHandler, make Server quiet if used as panic valueBrad Fitzpatrick2016-11-101-1/+7
* net/http: document that Server.Close and Shutdown don't track hijacked connsBrad Fitzpatrick2016-11-101-2/+14
* net/http: fix documentation on Server.TLSNextProto controlling http2Brad Fitzpatrick2016-11-101-1/+2
* net/http: fix Server.Close double LockBrad Fitzpatrick2016-11-101-1/+1
* net/http: fix type name in commentBrad Fitzpatrick2016-11-041-1/+1
* net/http, net/http/httptest: make http2's TrailerPrefix work for http1Brad Fitzpatrick2016-11-011-12/+67
* net/http: add Server.Close & Server.Shutdown for forced & graceful shutdownBrad Fitzpatrick2016-11-011-5/+196
* net/http: add Server.ReadHeaderTimeout, IdleTimeout, document WriteTimeoutBrad Fitzpatrick2016-10-261-13/+71
* net/http: add NoBody, don't return nil from NewRequest on zero bodiesBrad Fitzpatrick2016-10-221-20/+2
* net/http: make Redirect escape non-ASCII in Location headerBrad Fitzpatrick2016-10-211-1/+1
* net/http: make Server Handler's Request.Context be done on conn errorsBrad Fitzpatrick2016-10-181-89/+160
* net/http: add more docs on ErrHijackedBrad Fitzpatrick2016-10-171-1/+3
* net/http: allow Handlers to test Hijacked conn without spamming error logBrad Fitzpatrick2016-10-131-1/+3
* net/http: fix typo in server commontEmmanuel Odeke2016-10-101-1/+1
* net/http: remove TODO about the Server's base contextBrad Fitzpatrick2016-09-301-3/+1
* net/http: fix data race with concurrent use of Server.ServeBrad Fitzpatrick2016-07-271-9/+29
* all: rename vendored golang.org/x/net packages to golang_orgBrad Fitzpatrick2016-07-131-1/+1
* net/http: fix vet warning of leaked context in error pathsBrad Fitzpatrick2016-07-111-3/+2
* net/http: conditionally configure HTTP/2 in Server.Serve(Listener)Brad Fitzpatrick2016-06-281-2/+34
* net/http: reject faux HTTP/0.9 and HTTP/2+ requestsBrad Fitzpatrick2016-06-271-0/+21
* net/http: pass through server side Transfer-Encoding headersAndrew Gerrand2016-06-151-1/+4
* net/http: send StatusOK on empty body with TimeoutHandlerAndrew Gerrand2016-06-061-0/+3