paritytech / litep2p

Peer-to-peer networking library
MIT License
54 stars 5 forks source link

ping: Report back ping failures #132

Open lexnv opened 1 month ago

lexnv commented 1 month ago

The ping protocol reports currently the peer queried and the RTT:

https://github.com/paritytech/litep2p/blob/467a457c78785819e91ecdb7a5a926b7cd1c3d25/src/protocol/libp2p/ping/mod.rs#L50-L59

Extend the event to support ping failures:

https://github.com/paritytech/litep2p/blob/467a457c78785819e91ecdb7a5a926b7cd1c3d25/src/protocol/libp2p/ping/mod.rs#L220