1
0
mirror of https://github.com/golang/go synced 2024-10-03 05:21:22 -06:00

http: update cookie doc to reference new RFC 6265

R=rsc, r2
CC=golang-dev
https://golang.org/cl/4442100
This commit is contained in:
Brad Fitzpatrick 2011-04-28 11:36:06 -07:00
parent 3e9a1d50db
commit df2c5d5429

View File

@ -15,9 +15,9 @@ import (
"time"
)
// This implementation is done according to IETF draft-ietf-httpstate-cookie-23, found at
// This implementation is done according to RFC 6265:
//
// http://tools.ietf.org/html/draft-ietf-httpstate-cookie-23
// http://tools.ietf.org/html/rfc6265
// A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
// HTTP response or the Cookie header of an HTTP request.