type net/http.http2Frame

19 uses

	net/http (current package)
		h2_bundle.go#L1365: type http2frameParser func(fc *http2frameCache, fh http2FrameHeader, payload []byte) (http2Frame, error)
		h2_bundle.go#L1495: type http2Frame interface {
		h2_bundle.go#L1507: 	lastFrame http2Frame
		h2_bundle.go#L1730: func (fr *http2Framer) ReadFrame() (http2Frame, error) {
		h2_bundle.go#L1777: func (fr *http2Framer) checkFrameOrder(f http2Frame) error {
		h2_bundle.go#L1834: func http2parseDataFrame(fc *http2frameCache, fh http2FrameHeader, payload []byte) (http2Frame, error) {
		h2_bundle.go#L1941: func http2parseSettingsFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2078: func http2parsePingFrame(_ *http2frameCache, fh http2FrameHeader, payload []byte) (http2Frame, error) {
		h2_bundle.go#L2118: func http2parseGoAwayFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2158: func http2parseUnknownFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2169: func http2parseWindowUpdateFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2234: func http2parseHeadersFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2371: func http2parsePriorityFrame(_ *http2frameCache, fh http2FrameHeader, payload []byte) (http2Frame, error) {
		h2_bundle.go#L2418: func http2parseRSTStreamFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2448: func http2parseContinuationFrame(_ *http2frameCache, fh http2FrameHeader, p []byte) (http2Frame, error) {
		h2_bundle.go#L2498: func http2parsePushPromise(_ *http2frameCache, fh http2FrameHeader, p []byte) (_ http2Frame, err error) {
		h2_bundle.go#L2816: func http2summarizeFrame(f http2Frame) string {
		h2_bundle.go#L4297: 	f   http2Frame // valid until readMore is called
		h2_bundle.go#L4966: func (sc *http2serverConn) processFrame(f http2Frame) error {