golang.org/x/net/http2.StreamError.StreamID (field)
14 uses
golang.org/x/net/http2 (current package)
errors.go#L65: StreamID uint32
errors.go#L71: return StreamError{StreamID: id, Code: code}
errors.go#L76: return fmt.Sprintf("stream error: stream ID %d; %v; %v", e.StreamID, e.Code, e.Cause)
errors.go#L78: return fmt.Sprintf("stream error: stream ID %d; %v", e.StreamID, e.Code)
server.go#L1219: if st, ok := sc.streams[v.StreamID]; ok {
server.go#L1337: if st, ok := sc.streams[se.StreamID]; ok {
transport.go#L1827: if cs := cc.streamByID(se.StreamID, false); cs != nil {
transport.go#L2229: StreamID: f.StreamID,
transport.go#L2238: StreamID: f.StreamID,
write.go#L129: return ctx.Framer().WriteRSTStream(se.StreamID, se.Code)
writesched.go#L72: return se.StreamID
google.golang.org/grpc/internal/transport
http2_client.go#L1304: s := t.activeStreams[se.StreamID]
http2_server.go#L467: s := t.activeStreams[se.StreamID]
http2_server.go#L473: streamID: se.StreamID,
 |
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. |