golang.org/x/net/http2.FrameHeader.Length (field)
27 uses
golang.org/x/net/http2 (current package)
frame.go#L165: Length uint32
frame.go#L208: fmt.Fprintf(buf, " len=%d", h.Length)
frame.go#L247: Length: (uint32(buf[0])<<16 | uint32(buf[1])<<8 | uint32(buf[2])),
frame.go#L510: if fh.Length > fr.maxReadSize {
frame.go#L516: payload := fr.getReadBuf(fh.Length)
frame.go#L731: if fh.Flags.Has(FlagSettingsAck) && fh.Length > 0 {
server.go#L1605: if !sc.inflow.take(f.Length) {
server.go#L1608: sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
server.go#L1886: if !sc.inflow.take(f.Length) {
server.go#L1889: sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
server.go#L1903: if !sc.inflow.take(f.Length) {
server.go#L1906: sc.sendWindowUpdate(nil, int(f.Length)) // conn-level
server.go#L1914: if f.Length > 0 {
server.go#L1916: if !takeInflows(&sc.inflow, &st.inflow, f.Length) {
server.go#L1927: sc.sendWindowUpdate(nil, int(f.Length)-wrote)
server.go#L1940: pad := int32(f.Length) - int32(len(data))
transport.go#L2664: if f.Length > 0 {
transport.go#L2666: ok := cc.inflow.take(f.Length)
transport.go#L2667: connAdd := cc.inflow.add(int(f.Length))
transport.go#L2697: if f.Length > 0 {
transport.go#L2708: if !takeInflows(&cc.inflow, &cs.inflow, f.Length) {
transport.go#L2715: if pad := int(f.Length) - len(data); pad > 0 {
google.golang.org/grpc/internal/transport
http2_client.go#L1108: size := f.Header().Length
http2_client.go#L1536: WireLength: int(frame.Header().Length),
http2_client.go#L1544: WireLength: int(frame.Header().Length),
http2_server.go#L597: WireLength: int(frame.Header().Length),
http2_server.go#L748: size := f.Header().Length