]> Cypherpunks repositories - gostls13.git/commitdiff
net/http/cookiejar: mention go.net/publicsuffix.
authorShenghou Ma <minux.ma@gmail.com>
Mon, 15 Apr 2013 20:29:55 +0000 (04:29 +0800)
committerShenghou Ma <minux.ma@gmail.com>
Mon, 15 Apr 2013 20:29:55 +0000 (04:29 +0800)
R=golang-dev, r, gary.burd, dr.volker.dobler
CC=golang-dev
https://golang.org/cl/8660046

src/pkg/net/http/cookiejar/jar.go

index 5d1aeb87fd7dd2c06f92cc6ad4e68ed6eca7bfae..5977d48b6314f1075b0596c6741039980a98ce89 100644 (file)
@@ -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.
        //