net/http.http2FrameHeader.StreamID (field)
50 uses
net/http (current package)
h2_bundle.go#L1409: StreamID uint32
h2_bundle.go#L1445: if h.StreamID != 0 {
h2_bundle.go#L1446: fmt.Fprintf(buf, " stream=%d", h.StreamID)
h2_bundle.go#L1485: StreamID: binary.BigEndian.Uint32(buf[5:]) & (1<<31 - 1),
h2_bundle.go#L1789: fh.Type, fh.StreamID,
h2_bundle.go#L1792: if fh.StreamID != fr.lastHeaderStream {
h2_bundle.go#L1795: fh.StreamID, fr.lastHeaderStream))
h2_bundle.go#L1798: return fr.connError(http2ErrCodeProtocol, fmt.Sprintf("unexpected CONTINUATION for stream %d", fh.StreamID))
h2_bundle.go#L1806: fr.lastHeaderStream = fh.StreamID
h2_bundle.go#L1835: if fh.StreamID == 0 {
h2_bundle.go#L1951: if fh.StreamID != 0 {
h2_bundle.go#L2082: if fh.StreamID != 0 {
h2_bundle.go#L2119: if fh.StreamID != 0 {
h2_bundle.go#L2181: if fh.StreamID == 0 {
h2_bundle.go#L2184: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2238: if fh.StreamID == 0 {
h2_bundle.go#L2265: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2372: if fh.StreamID == 0 {
h2_bundle.go#L2422: if fh.StreamID == 0 {
h2_bundle.go#L2449: if fh.StreamID == 0 {
h2_bundle.go#L2502: if pp.StreamID == 0 {
h2_bundle.go#L2804: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, invalid}
h2_bundle.go#L2811: return nil, http2StreamError{mh.StreamID, http2ErrCodeProtocol, err}
h2_bundle.go#L2844: if f.StreamID == 0 {
h2_bundle.go#L5011: if f.StreamID != 0 {
h2_bundle.go#L5029: case f.StreamID != 0: // stream-level flow control
h2_bundle.go#L5030: state, st := sc.state(f.StreamID)
h2_bundle.go#L5047: return http2streamError(f.StreamID, http2ErrCodeFlowControl)
h2_bundle.go#L5061: state, st := sc.state(f.StreamID)
h2_bundle.go#L5072: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5211: id := f.Header().StreamID
h2_bundle.go#L5344: id := f.StreamID
h2_bundle.go#L5361: if st := sc.streams[f.StreamID]; st != nil {
h2_bundle.go#L5417: if err := http2checkPriority(f.StreamID, f.Priority); err != nil {
h2_bundle.go#L5502: if err := http2checkPriority(f.StreamID, f.http2PriorityParam); err != nil {
h2_bundle.go#L5505: sc.writeSched.AdjustStream(f.StreamID, f.http2PriorityParam)
h2_bundle.go#L5559: return nil, nil, http2streamError(f.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L5572: return nil, nil, http2streamError(f.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L5578: return nil, nil, http2streamError(f.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L8393: cs := cc.streamByID(f.StreamID, false)
h2_bundle.go#L8413: defer cc.forgetStreamID(f.StreamID)
h2_bundle.go#L8415: cc.forgetStreamID(f.StreamID)
h2_bundle.go#L8440: cs.cc.writeStreamReset(f.StreamID, http2ErrCodeProtocol, err)
h2_bundle.go#L8700: cs := cc.streamByID(f.StreamID, f.StreamEnded())
h2_bundle.go#L8706: if f.StreamID >= neverSent {
h2_bundle.go#L8732: StreamID: f.StreamID,
h2_bundle.go#L8741: StreamID: f.StreamID,
h2_bundle.go#L8897: cs := cc.streamByID(f.StreamID, false)
h2_bundle.go#L8898: if f.StreamID != 0 && cs == nil {
h2_bundle.go#L8917: cs := rl.cc.streamByID(f.StreamID, true)
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |