Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for startWrite (0.08 sec)

  1. src/net/http/h2_bundle.go

    }
    
    func (fr *http2Framer) maxHeaderListSize() uint32 {
    	if fr.MaxHeaderListSize == 0 {
    		return 16 << 20 // sane default, per docs
    	}
    	return fr.MaxHeaderListSize
    }
    
    func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
    	// Write the FrameHeader.
    	f.wbuf = append(f.wbuf[:0],
    		0, // 3 bytes of length, filled in in endWrite
    		0,
    		0,
    		byte(ftype),
    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