aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorShenghou Ma <minux.ma@gmail.com>2013-04-16 04:29:55 +0800
committerShenghou Ma <minux.ma@gmail.com>2013-04-16 04:29:55 +0800
commit83b7b0e24f6060259a4837017e2f9d51cbd01aec (patch)
tree4467efe09b98c9f8c33a7c1b02dca94b681f730c /src
parentb3809cae5e89af31d618b07843267a17cff28999 (diff)
downloadgo-83b7b0e24f6060259a4837017e2f9d51cbd01aec.tar.xz
net/http/cookiejar: mention go.net/publicsuffix.
R=golang-dev, r, gary.burd, dr.volker.dobler CC=golang-dev https://golang.org/cl/8660046
Diffstat (limited to 'src')
-rw-r--r--src/pkg/net/http/cookiejar/jar.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pkg/net/http/cookiejar/jar.go b/src/pkg/net/http/cookiejar/jar.go
index 5d1aeb87fd..5977d48b63 100644
--- a/src/pkg/net/http/cookiejar/jar.go
+++ b/src/pkg/net/http/cookiejar/jar.go
@@ -28,6 +28,9 @@ import (
// An implementation that always returns "" is valid and may be useful for
// testing but it is not secure: it means that the HTTP server for foo.com can
// set a cookie for bar.com.
+//
+// A public suffix list implementation is in the package
+// code.google.com/p/go.net/publicsuffix.
type PublicSuffixList interface {
// PublicSuffix returns the public suffix of domain.
//