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])