Ping https://tools.ietf.org/html/rfc7540#section-6.7
| 11 | |
| 12 | // Ping https://tools.ietf.org/html/rfc7540#section-6.7 |
| 13 | type Ping struct { |
| 14 | ack bool |
| 15 | data [8]byte |
| 16 | } |
| 17 | |
| 18 | func (p *Ping) IsAck() bool { |
| 19 | return p.ack |
nothing calls this directly
no outgoing calls
no test coverage detected