golang.org/x/net/http2.Framer.WriteGoAway (method)
7 uses
golang.org/x/net/http2 (current package)
frame.go#L890: func (f *Framer) WriteGoAway(maxStreamID uint32, code ErrCode, debugData []byte) error {
server.go#L487: sc.framer.WriteGoAway(0, err, []byte(debug))
transport.go#L883: if err := cc.fr.WriteGoAway(maxStreamID, ErrCodeNo, nil); err != nil {
transport.go#L1744: cc.fr.WriteGoAway(0, ErrCode(ce), nil)
write.go#L91: err := ctx.Framer().WriteGoAway(p.maxStreamID, p.code, nil)
google.golang.org/grpc/internal/transport
http2_server.go#L1173: if err := t.framer.fr.WriteGoAway(sid, g.code, g.debugData); err != nil {
http2_server.go#L1191: if err := t.framer.fr.WriteGoAway(math.MaxUint32, http2.ErrCodeNo, []byte{}); err != nil {
 |
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. |