type net/http.Cookie
20 uses
net/http (current package)
client.go#L754: icookies map[string][]*Cookie
client.go#L757: icookies = make(map[string][]*Cookie)
cookie.go#L23: type Cookie struct {
cookie.go#L60: func readSetCookies(h Header) []*Cookie {
cookie.go#L63: return []*Cookie{}
cookie.go#L65: cookies := make([]*Cookie, 0, cookieCount)
cookie.go#L84: c := &Cookie{
cookie.go#L169: func SetCookie(w ResponseWriter, cookie *Cookie) {
cookie.go#L179: func (c *Cookie) String() string {
cookie.go#L243: func (c *Cookie) Valid() error {
cookie.go#L277: func readCookies(h Header, filter string) []*Cookie {
cookie.go#L280: return []*Cookie{}
cookie.go#L283: cookies := make([]*Cookie, 0, len(lines)+strings.Count(lines[0], ";"))
cookie.go#L306: cookies = append(cookies, &Cookie{Name: name, Value: val})
jar.go#L21: SetCookies(u *url.URL, cookies []*Cookie)
jar.go#L26: Cookies(u *url.URL) []*Cookie
request.go#L415: func (r *Request) Cookies() []*Cookie {
request.go#L426: func (r *Request) Cookie(name string) (*Cookie, error) {
request.go#L442: func (r *Request) AddCookie(c *Cookie) {
response.go#L125: func (r *Response) Cookies() []*Cookie {
|
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. |