Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for encodeTypeByte (0.1 sec)

  1. src/vendor/golang.org/x/net/http2/hpack/encode.go

    		dst = append(dst, s...)
    	}
    	return dst
    }
    
    // encodeTypeByte returns type byte. If sensitive is true, type byte
    // for "Never Indexed" representation is returned. If sensitive is
    // false and indexing is true, type byte for "Incremental Indexing"
    // representation is returned. Otherwise, type byte for "Without
    // Indexing" is returned.
    func encodeTypeByte(indexing, sensitive bool) byte {
    	if sensitive {
    		return 0x10
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 7.1K bytes
    - Viewed (0)
Back to top