type net/http.http2flow

15 uses

	net/http (current package)
		h2_bundle.go#L1217: type http2flow struct {
		h2_bundle.go#L1227: 	conn *http2flow
		h2_bundle.go#L1230: func (f *http2flow) setConnFlow(cf *http2flow) { f.conn = cf }
		h2_bundle.go#L1232: func (f *http2flow) available() int32 {
		h2_bundle.go#L1240: func (f *http2flow) take(n int32) {
		h2_bundle.go#L1252: func (f *http2flow) add(n int32) bool {
		h2_bundle.go#L4073: 	flow             http2flow                   // conn-wide (not stream-specific) outbound flow control
		h2_bundle.go#L4074: 	inflow           http2flow                   // conn-wide inbound flow control
		h2_bundle.go#L4152: 	flow             http2flow // limits writing from Handler to client
		h2_bundle.go#L4153: 	inflow           http2flow // what the client is allowed to POST/etc to us
		h2_bundle.go#L6747: 	flow            http2flow  // our conn-level flow control quota (cs.flow is per stream)
		h2_bundle.go#L6748: 	inflow          http2flow  // peer's conn-level flow control
		h2_bundle.go#L6790: 	flow        http2flow // guarded by cc.mu
		h2_bundle.go#L6791: 	inflow      http2flow // guarded by cc.mu