- 2ae7737 all: link to https instead of http by Brad Fitzpatrick · 10 years ago
- 379d832 net/http: don't overwrite Authorization headers when URL has username by Steve Streeting · 10 years ago
- 7f9f70e all: fix misprints in comments by Ainar Garipov · 10 years ago
- 516f0d1 net/http: silence race detector on client header timeout test by Daniel Morsing · 10 years ago
- b016eba net/http: fix Transport data race, double cancel panic, cancel error message by Brad Fitzpatrick · 10 years ago
- 4b96409 net/http: support for setting trailers from a server Handler by Brad Fitzpatrick · 10 years ago
- 01b2560 net/http: make Client.Timeout return net.Error errors indicating timeout by Brad Fitzpatrick · 10 years ago
- f739b77 net/http: fix authentication info leakage in Referer header (potential security risk) by Jens Frederich · 10 years ago
- c007ce8 build: move package sources from src/pkg to src by Russ Cox · 11 years ago[Renamed from src/pkg/net/http/client_test.go]
- fb91559 all: fix typos by Rui Ueyama · 11 years ago
- 9b3e2aa net/http: document, test, define, clean up Request.Trailer by Brad Fitzpatrick · 11 years ago
- cf57cf1 net/http: eliminate defined-but-not-used var. by Alan Donovan · 11 years ago
- 3b961ba net/http: deflake a test by Brad Fitzpatrick · 11 years ago
- 6433bff net/http: minor fixes and optimization for Response.TLS by Brad Fitzpatrick · 11 years ago
- 4816986 net/http: Add TLS Connection State to Responses. by Paul A Querna · 11 years ago
- 3b01561 net/http: improve Client.Timeout docs, quiet test by Brad Fitzpatrick · 11 years ago
- a5166a9 net/http: fix test failure on some Windows machines by Brad Fitzpatrick · 11 years ago
- 76cc0a2 net/http: in Client, consume small redirect bodies before making next request by Brad Fitzpatrick · 11 years ago
- 2ad72ec net/http: add Client.Timeout for end-to-end timeouts by Brad Fitzpatrick · 11 years ago
- 281088b net/http: add Server.ErrorLog; log and test TLS handshake errors by Brad Fitzpatrick · 11 years ago
- 2ccc9a9 net/http: quiet distracting test spam by Brad Fitzpatrick · 11 years ago
- a08b1d1 net/http: Various fixes to Basic authentication by Pieter Droogendijk · 12 years ago
- baa9ca0 net/http: respect tls.Config.ServerName in Transport by Brad Fitzpatrick · 12 years ago
- d535bc7 net/http: Fix basic authentication with empty password by Alberto García Hierro · 12 years ago
- 8b29f15 net/http: fix a panic in Redirect by Brad Fitzpatrick · 12 years ago
- caf513a net/http: less flaky leaking goroutine test by Brad Fitzpatrick · 12 years ago
- e15c0ac all: remove now-unnecessary unreachable panics by Brad Fitzpatrick · 12 years ago
- 65fcb39 net/http: fix a bunch of test leaks by Brad Fitzpatrick · 12 years ago
- d0283ab net/http: only call client SetCookie when needed by Joakim Sernbrant · 12 years ago
- be5ce4e net/http: remove a stale cookie TODO comment, add a test by Brad Fitzpatrick · 12 years ago
- 08ce7f1 net/http: follow certain redirects after POST requests by Brad Fitzpatrick · 12 years ago
- 53d091c net/http: populate ContentLength in HEAD responses by Brad Fitzpatrick · 12 years ago
- 56bcef0 net/http: add missing error checking reading trailers by Brad Fitzpatrick · 12 years ago
- 4918e3a net/http/client.go: fix cookie handling on (*Client) Do() by Pawel Szczur · 12 years ago
- 2eb6a16 net/http: Set TLSClientConfig.ServerName on every HTTP request. by Dave Borowitz · 13 years ago
- dfd7f18 net/http: revert back to (and test) Go 1 CheckRedirect behavior by Brad Fitzpatrick · 13 years ago
- 93b7d1b net/http: fix doc inaccuracy and typo; tighten test by Brad Fitzpatrick · 13 years ago
- e1d9fcd net/http: clarify client return values in docs by Brad Fitzpatrick · 13 years ago
- b4456df net/http: add cookies from jar to POST request. by Volker Dobler · 13 years ago
- 56cae1c all: gofmt -w -s src misc by Robert Griesemer · 13 years ago
- 899cd04 net/http: add Request.RequestURI field by Brad Fitzpatrick · 13 years ago
- 650b936 net/http: send cookies in jar on redirect by Jeff Hodges · 13 years ago
- c935559 net/http: fix EOF handling on response body by Gustavo Niemeyer · 13 years ago
- 45e3bcb renaming_3: gofix -r go1pkgrename src/pkg/[m-z]* by Rob Pike · 13 years ago
- de03d50 net: renamings by Rob Pike · 13 years ago[Renamed from src/pkg/http/client_test.go]
- c2049d2 src/pkg/[a-m]*: gofix -r error -force=error by Russ Cox · 13 years ago
- 2cab897 http: Transport: with TLS InsecureSkipVerify, skip hostname check by Brad Fitzpatrick · 13 years ago
- bdf6611 http: do not depend on map iteration order by Russ Cox · 13 years ago
- 1d8f822 url: new package by Rob Pike · 14 years ago
- 89873e6 http: buffer Request.Write by Brad Fitzpatrick · 14 years ago
- 6e9b1a7 http: make Headers be source of truth by Brad Fitzpatrick · 14 years ago
- 6a87628 http: change most map[string][]string types to new Values type by Brad Fitzpatrick · 14 years ago
- 2198050 http: have client set Content-Length when possible by Brad Fitzpatrick · 14 years ago
- b32ad8b http: Client test for streaming responses (no code changes) by Brad Fitzpatrick · 14 years ago
- 4ffff35 http: Client.Do should follow redirects for GET and HEAD by Brad Fitzpatrick · 14 years ago
- 092f34f http: make HEAD client request follow redirects by Eivind Uggedal · 14 years ago
- 05a1b7e http: remove finalURL from Client.Get; move to Response by Brad Fitzpatrick · 14 years ago
- 1038e7c http: make Client redirect policy configurable by Brad Fitzpatrick · 14 years ago
- d3d6729 http: rename interface Transport to RoundTripper by Brad Fitzpatrick · 14 years ago
- 8e1fa76 http: don't hit external network in client_test.go by Brad Fitzpatrick · 14 years ago
- 9733f96 http: initialize request Header for the transport by Brad Fitzpatrick · 14 years ago
- 60f1937 http: expose Client's Transport by Brad Fitzpatrick · 14 years ago
- c797858 http: set method GET on Get() requests by Brad Fitzpatrick · 14 years ago
- d3c3c15 http: client_test nil pointer fix by Andrew Gerrand · 15 years ago
- 9b3c743 http: add Head function for making HTTP HEAD requests by Andrew Gerrand · 15 years ago
- a3d1045 1) Change default gofmt default settings for by Robert Griesemer · 15 years ago
- b0683bd move ReadFile, WriteFile, and ReadDir into a separate io/ioutil package. by Rob Pike · 15 years ago
- 40621d5 remove semis after statements in one-statement statement lists by Robert Griesemer · 15 years ago
- 20011bc unused imports by Russ Cox · 16 years ago
- ca6a0fe more "declared and not used". by Russ Cox · 16 years ago
- b04ac10 convert non-low-level non-google pkg code to whole-package compilation. by Russ Cox · 16 years ago
- a0bcaf4 Change os.Error convention: by Russ Cox · 16 years ago
- a50cbf6 style police: parens in if, for, switch, range by Russ Cox · 16 years ago
- 64684cc introduce os.EOF and io.ErrUnexpectedEOF. by Russ Cox · 16 years ago
- cbd0092 Switch http client_test to use google.com/robots.txt to avoid redirect loop. by David Symonds · 16 years ago
- f315fb3 Basic HTTP client. by Steve Newman · 16 years ago