Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for parseCookieValue (0.15 sec)

  1. src/net/http/cookie.go

    	buf := make([]byte, 0, len(v))
    	for i := 0; i < len(v); i++ {
    		if b := v[i]; valid(b) {
    			buf = append(buf, b)
    		}
    	}
    	return string(buf)
    }
    
    // parseCookieValue parses a cookie value according to RFC 6265.
    // If allowDoubleQuote is true, parseCookieValue will consider that it
    // is parsing the cookie-value;
    // otherwise, it will consider that it is parsing a cookie-av value
    // (cookie attribute-value).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:33:05 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top