Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isNotToken (0.09 sec)

  1. src/net/http/cookie.go

    			return "", quoted, false
    		}
    	}
    	return raw, quoted, true
    }
    
    func isCookieNameValid(raw string) bool {
    	if raw == "" {
    		return false
    	}
    	return strings.IndexFunc(raw, isNotToken) < 0
    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