golang.org/x/net/http2.ClientConn.fr (field)
25 uses
golang.org/x/net/http2 (current package)
transport.go#L258: fr *Framer
transport.go#L670: cc.fr = NewFramer(cc.bw, cc.br)
transport.go#L671: cc.fr.ReadMetaHeaders = hpack.NewDecoder(initialHeaderTableSize, nil)
transport.go#L672: cc.fr.MaxHeaderListSize = t.maxHeaderListSize()
transport.go#L696: cc.fr.WriteSettings(initialSettings...)
transport.go#L697: cc.fr.WriteWindowUpdate(0, transportDefaultConnFlow)
transport.go#L883: if err := cc.fr.WriteGoAway(maxStreamID, ErrCodeNo, nil); err != nil {
transport.go#L1278: cc.fr.WriteHeaders(HeadersFrameParam{
transport.go#L1286: cc.fr.WriteContinuation(streamID, endHeaders, chunk)
transport.go#L1379: err = cc.fr.WriteData(cs.ID, sentEnd, data)
transport.go#L1427: err = cc.fr.WriteData(cs.ID, true, nil)
transport.go#L1744: cc.fr.WriteGoAway(0, ErrCode(ce), nil)
transport.go#L1819: f, err := cc.fr.ReadFrame()
transport.go#L1831: se.Cause = cc.fr.errDetail
transport.go#L2154: cc.fr.WriteWindowUpdate(0, mustUint31(connAdd))
transport.go#L2157: cc.fr.WriteWindowUpdate(cs.ID, mustUint31(streamAdd))
transport.go#L2177: cc.fr.WriteRSTStream(cs.ID, ErrCodeCancel)
transport.go#L2183: cc.fr.WriteWindowUpdate(0, uint32(unread))
transport.go#L2220: cc.fr.WriteWindowUpdate(0, uint32(f.Length))
transport.go#L2266: cc.fr.WriteWindowUpdate(0, uint32(refund))
transport.go#L2269: cc.fr.WriteWindowUpdate(cs.ID, uint32(refund))
transport.go#L2387: cc.fr.WriteSettingsAck()
transport.go#L2454: if err := cc.fr.WritePing(false, p); err != nil {
transport.go#L2489: if err := cc.fr.WritePing(true, f.Data); err != nil {
transport.go#L2512: cc.fr.WriteRSTStream(streamID, code)
 |
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. |