1
0
mirror of https://github.com/golang/go synced 2024-09-29 07:34:36 -06:00

net/http: update net/http package to replace a broken link with an archive link

replaces broken link with a web.archive.org link.

Change-Id: I438536a6ac51d837c30be5df7d3d0caadf65bb95
GitHub-Last-Rev: 0601e4d6b2
GitHub-Pull-Request: golang/go#30523
Reviewed-on: https://go-review.googlesource.com/c/164761
Reviewed-by: Bryan C. Mills <bcmills@google.com>
This commit is contained in:
Samuel Kelemen 2019-03-01 22:42:58 +00:00 committed by Bryan C. Mills
parent 249f5d2af4
commit c05f2b4869

View File

@ -102,7 +102,7 @@ func RequestFromMap(params map[string]string) (*http.Request, error) {
}
// There's apparently a de-facto standard for this.
// https://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636
// https://web.archive.org/web/20170105004655/http://docstore.mik.ua/orelly/linux/cgi/ch03_02.htm#ch03-35636
if s := params["HTTPS"]; s == "on" || s == "ON" || s == "1" {
r.TLS = &tls.ConnectionState{HandshakeComplete: true}
}