net/http.Cookie.Path (field)
9 uses
net/http (current package)
cookie.go#L31: Path string // optional
cookie.go#L211: c.Path = val
cookie.go#L269: b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
cookie.go#L274: if len(c.Path) > 0 {
cookie.go#L276: b.WriteString(sanitizeCookiePath(c.Path))
cookie.go#L343: if len(c.Path) > 0 {
cookie.go#L344: for i := 0; i < len(c.Path); i++ {
cookie.go#L345: if !validCookiePathByte(c.Path[i]) {
cookie.go#L346: return fmt.Errorf("http: invalid byte %q in Cookie.Path", c.Path[i])
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)