Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for http2typeFrameParser (0.28 sec)

  1. src/net/http/h2_bundle.go

    	http2FrameGoAway:       http2parseGoAwayFrame,
    	http2FrameWindowUpdate: http2parseWindowUpdateFrame,
    	http2FrameContinuation: http2parseContinuationFrame,
    }
    
    func http2typeFrameParser(t http2FrameType) http2frameParser {
    	if f := http2frameParsers[t]; f != nil {
    		return f
    	}
    	return http2parseUnknownFrame
    }
    
    // A FrameHeader is the 9 byte header of all HTTP/2 frames.
    //
    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