net/http.Cookie.Path (field)
9 uses
net/http (current package)
cookie.go#L27: Path string // optional
cookie.go#L155: c.Path = val
cookie.go#L186: b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
cookie.go#L191: if len(c.Path) > 0 {
cookie.go#L193: b.WriteString(sanitizeCookiePath(c.Path))
cookie.go#L257: if len(c.Path) > 0 {
cookie.go#L258: for i := 0; i < len(c.Path); i++ {
cookie.go#L259: if !validCookiePathByte(c.Path[i]) {
cookie.go#L260: return fmt.Errorf("http: invalid byte %q in Cookie.Path", c.Path[i])
The pages are generated with Golds v0.4.9. (GOOS=linux GOARCH=amd64)