net/http.Cookie.Path (field)
9 uses
net/http (current package)
cookie.go#L27: Path string // optional
cookie.go#L156: c.Path = val
cookie.go#L187: b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
cookie.go#L192: if len(c.Path) > 0 {
cookie.go#L194: b.WriteString(sanitizeCookiePath(c.Path))
cookie.go#L258: if len(c.Path) > 0 {
cookie.go#L259: for i := 0; i < len(c.Path); i++ {
cookie.go#L260: if !validCookiePathByte(c.Path[i]) {
cookie.go#L261: return fmt.Errorf("http: invalid byte %q in Cookie.Path", c.Path[i])
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |