summaryrefslogtreecommitdiff
path: root/src/net/http/client.go
Commit message (Expand)AuthorAgeFilesLines
* all: gofmt main repoRuss Cox2022-04-111-23/+23
* all: remove trailing blank doc comment linesRuss Cox2022-04-011-1/+0
* all: fix various doc comment formatting nitsRuss Cox2022-04-011-3/+3
* net/http: handle 3xx responses with no LocationDamien Neil2022-03-311-13/+4
* net/http: do not cancel request context on response body readDamien Neil2021-11-121-1/+0
* net/http: correct capitalization in cancelTimeBody commentshota35062021-07-161-1/+1
* net/http: correct Client.Do doc about context cancelationManlio Perillo2021-05-271-5/+2
* net/http: switch HTTP1 to ASCII equivalents of string functionsRoberto Clapis2021-05-101-1/+5
* net/http: mention NewRequestWithContext+Client.Do for custom contextsEmmanuel T Odeke2021-03-191-0/+24
* all: update references to symbols moved from io/ioutil to ioRuss Cox2020-10-201-3/+2
* all: fix spelling mistakeslihaowei2020-08-181-1/+1
* net/http: treat a nil Body from a custom RoundTripper as an empty oneBryan C. Mills2020-03-311-1/+14
* net/http: remove period at end of error messaged-tsuji2020-03-221-1/+1
* net/http: verify RoundTripper invariants in the send functionBryan C. Mills2020-03-021-0/+6
* net/http: don't treat an alternate protocol as a known round tripperIan Lance Taylor2020-01-291-5/+12
* net/http: fix and lock-in Client.Do docs on request cancelationEmmanuel T Odeke2019-10-141-2/+2
* net/http: fix Transport panic with nil Request.HeaderEmmanuel T Odeke2019-10-141-2/+2
* net/http: propagate Client.Timeout down into Request's context deadlineBrad Fitzpatrick2019-09-251-20/+70
* net/http: strip escaped password from errorThanabodee Charoenpiriyakij2019-05-031-3/+2
* net/http: export Header.Clone, reduce its allocations, use it everywhereBrad Fitzpatrick2019-04-241-2/+2
* all: s/cancelation/cancellation/Josh Bleecher Snyder2019-04-161-3/+3
* net/http: clarify Transport connection reuse docs a bitBrad Fitzpatrick2019-01-181-4/+4
* net/http: use Header.clone rather then duplicating functionalityVladimir Varankin2018-09-231-1/+1
* net/http: add Client.CloseIdleConnectionsBrad Fitzpatrick2018-08-201-0/+16
* net/http: update request cancelation docsBrad Fitzpatrick2018-08-131-5/+3
* net/http: document that Client methods always return *url.ErrorBrad Fitzpatrick2018-07-241-5/+35
* net/http: clarify when it's allowed to reuse a RequestBrad Fitzpatrick2018-07-101-2/+2
* all: update comment URLs from HTTP to HTTPS, where possibleTim Cooper2018-06-011-1/+1
* net/http: remove unnecessary parameter typeshogo-ma2018-04-221-2/+2
* net/http: strip password from error messageGregory Man2018-03-311-2/+11
* net/http: use RFC 723x as normative reference in docsDavid Url2018-02-201-1/+1
* net/http: clarify when it is safe to reuse a requestTom Bergan2017-11-021-1/+4
* net/http: fix typo in doc stringJoe Kyo2017-11-011-1/+1
* net/http: preserve Host header following a relative redirectTom Bergan2017-10-161-0/+10
* net/http: use canonicalAddr on shouldCopyHeaderOnRedirectGuilherme Rezende2017-10-021-10/+2
* net/http: fix double-close of req.BodyMatt Harden2017-06-261-5/+11
* net/http: close resp.Body when error occurred during redirectionWeichao Tang2017-04-271-0/+3
* net/http: use bullet characters for godoc listsDamien Lespiau2017-04-211-14/+14
* net/http: don't send body on redirects for 301, 302, 303 when GetBody is setBrad Fitzpatrick2017-01-241-8/+13
* net/http: preserve original HTTP method when possibleJoe Tsai2017-01-091-8/+14
* net/http, doc: more redirect documentationBrad Fitzpatrick2016-12-201-0/+21
* net/http: deflake TestClientTimeout_Headers_h2 on WindowsBrad Fitzpatrick2016-12-141-13/+15
* net/http: update some commentsBrad Fitzpatrick2016-12-131-1/+6
* net/http: document how headers are forwarded by ClientJoe Tsai2016-11-301-2/+27
* net/http: don't wrap request cancellation errors in timeoutsEmmanuel Odeke2016-11-101-20/+14
* net/http: move extra redirect logic for 307/308 into redirectBehaviorEmmanuel Odeke2016-11-041-34/+27
* net/http: tweak the new Client 307/308 redirect behavior a bitBrad Fitzpatrick2016-11-041-0/+28
* net/http: handle 3xx redirects properlyEmmanuel Odeke2016-10-301-69/+58
* net/http: fix redirect logic to handle mutations of cookiesJoe Tsai2016-10-251-16/+77
* net/http: add Request.GetBody func for 307/308 redirectsBrad Fitzpatrick2016-10-221-0/+7