Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for frame_windowupdate_bad_len (0.22 sec)

  1. src/net/http/h2_bundle.go

    }
    
    func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, countError func(string), p []byte) (http2Frame, error) {
    	if len(p) != 4 {
    		countError("frame_windowupdate_bad_len")
    		return nil, http2ConnectionError(http2ErrCodeFrameSize)
    	}
    	inc := binary.BigEndian.Uint32(p[:4]) & 0x7fffffff // mask off high reserved bit
    	if inc == 0 {
    		// A receiver MUST treat the receipt of a
    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