Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for headerKey (0.09 sec)

  1. pilot/pkg/networking/core/route/route.go

    func isInternalHeader(headerKey string) bool {
    	return strings.HasPrefix(headerKey, ":") || strings.EqualFold(headerKey, "host")
    }
    
    // isAuthorityHeader returns true if a header refers to the authority header
    func isAuthorityHeader(headerKey string) bool {
    	return strings.EqualFold(headerKey, ":authority") || strings.EqualFold(headerKey, "host")
    }
    
    func dropInternal(keys []string) []string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    	// uint16Len is the length (in bytes) of a uint16.
    	uint16Len = 2
    
    	// uint32Len is the length (in bytes) of a uint32.
    	uint32Len = 4
    
    	// headerLen is the length (in bytes) of a DNS header.
    	//
    	// A header is comprised of 6 uint16s and no padding.
    	headerLen = 6 * uint16Len
    )
    
    type nestedError struct {
    	// s is the current level's error message.
    	s string
    
    	// err is the nested error.
    	err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
Back to top