net/http.Cookie.Path (field)
9 uses
	net/http (current package)
		cookie.go#L28: 	Path       string    // optional
		cookie.go#L187: 			c.Path = val
		cookie.go#L235: 	b.Grow(len(c.Name) + len(c.Value) + len(c.Domain) + len(c.Path) + extraCookieLength)
		cookie.go#L240: 	if len(c.Path) > 0 {
		cookie.go#L242: 		b.WriteString(sanitizeCookiePath(c.Path))
		cookie.go#L309: 	if len(c.Path) > 0 {
		cookie.go#L310: 		for i := 0; i < len(c.Path); i++ {
		cookie.go#L311: 			if !validCookiePathByte(c.Path[i]) {
		cookie.go#L312: 				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) 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 @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |