aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Fitzpatrick <bradfitz@golang.org>2016-11-07 04:05:18 +0000
committerBrad Fitzpatrick <bradfitz@golang.org>2016-11-07 06:46:01 +0000
commit3df059ece5d4c575abdf61b4b955f0ba292e5168 (patch)
tree58d64c86c7b3f8624a37e359e78ae5ba1d313fb0
parentf8187ceacf886195dc9f72a6578bd266efc52681 (diff)
downloadgo-3df059ece5d4c575abdf61b4b955f0ba292e5168.tar.gz
go-3df059ece5d4c575abdf61b4b955f0ba292e5168.zip
net/http/fcgi: fix link to protocol docs
Fixes #17815 Change-Id: I766082d28a14c77f5dfb6cd1974b86cb0a8fe31a Reviewed-on: https://go-review.googlesource.com/32852 Reviewed-by: Minux Ma <minux@golang.org>
-rw-r--r--src/net/http/fcgi/fcgi.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/net/http/fcgi/fcgi.go b/src/net/http/fcgi/fcgi.go
index 337484139d..5057d70098 100644
--- a/src/net/http/fcgi/fcgi.go
+++ b/src/net/http/fcgi/fcgi.go
@@ -3,8 +3,12 @@
// license that can be found in the LICENSE file.
// Package fcgi implements the FastCGI protocol.
+//
+// The protocol is not an official standard and the original
+// documentation is no longer online. See the Internet Archive's
+// mirror at: https://web.archive.org/web/20150420080736/http://www.fastcgi.com/drupal/node/6?q=node/22
+//
// Currently only the responder role is supported.
-// The protocol is defined at http://www.fastcgi.com/drupal/node/6?q=node/22
package fcgi
// This file defines the raw protocol and some utilities used by the child and