(payload)
| 577 | } |
| 578 | |
| 579 | function onPing(payload) { |
| 580 | const session = this[kOwner]; |
| 581 | if (session.destroyed) |
| 582 | return; |
| 583 | session[kUpdateTimer](); |
| 584 | debugSessionObj(session, 'new ping received'); |
| 585 | session.emit('ping', payload); |
| 586 | } |
| 587 | |
| 588 | // Called when the stream is closed either by sending or receiving an |
| 589 | // RST_STREAM frame, or through a natural end-of-stream. |
nothing calls this directly
no test coverage detected
searching dependent graphs…