Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for http2asciiToLower (0.21 sec)

  1. src/net/http/h2_bundle.go

    		if s[i] < ' ' || s[i] > '~' {
    			return false
    		}
    	}
    	return true
    }
    
    // asciiToLower returns the lowercase version of s if s is ASCII and printable,
    // and whether or not it was.
    func http2asciiToLower(s string) (lower string, ok bool) {
    	if !http2isASCIIPrint(s) {
    		return "", false
    	}
    	return strings.ToLower(s), true
    }
    
    // A list of the possible cipher suite ids. Taken from
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top