golang.org/x/net/http2.Framer.WritePing (method)

6 uses

	golang.org/x/net/http2 (current package)
		frame.go#L871: func (f *Framer) WritePing(ack bool, data [8]byte) error {
		transport.go#L2911: 		if err := cc.fr.WritePing(false, p); err != nil {
		transport.go#L2948: 	if err := cc.fr.WritePing(true, f.Data); err != nil {
		write.go#L137: 	return ctx.Framer().WritePing(true, w.pf.Data)

	google.golang.org/grpc/internal/transport
		controlbuf.go#L742: 	return l.framer.fr.WritePing(p.ack, p.data)
		http2_server.go#L1365: 	if err := t.framer.fr.WritePing(false, goAwayPing.data); err != nil {