Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 51 of 51 for begins (0.06 sec)

  1. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    // (Section 8.1.2.6). Valid characters are defined by the
    // field-content ABNF rule in Section 3.2 of [RFC7230]."
    //
    // This function does not (yet?) properly handle the rejection of
    // strings that begin or end with SP or HTAB.
    func ValidHeaderFieldValue(v string) bool {
    	for i := 0; i < len(v); i++ {
    		b := v[i]
    		if isCTL(b) && !isLWS(b) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top