mirror of
https://github.com/libp2p/go-libp2p-core.git
synced 2025-03-26 13:00:07 +08:00
changes as per raul's review
This commit is contained in:
parent
22092abdbb
commit
493f2b140f
@ -5,12 +5,12 @@ import (
|
|||||||
"github.com/libp2p/go-libp2p-core/peer"
|
"github.com/libp2p/go-libp2p-core/peer"
|
||||||
)
|
)
|
||||||
|
|
||||||
// EvtPeerConnectednessChange should be emitted every time we form a connection with a peer or drop our last
|
// EvtPeerConnectednessChanged should be emitted every time we form a connection with a peer or drop our last
|
||||||
// connection with the peer. Essentially, it is emitted in two cases:
|
// connection with the peer. Essentially, it is emitted in two cases:
|
||||||
// a) We form a/any connection with a peer.
|
// a) We form a/any connection with a peer.
|
||||||
// b) We go from having a connection/s with a peer to having no connection with the peer.
|
// b) We go from having a connection/s with a peer to having no connection with the peer.
|
||||||
// It contains the Id of the remote peer and the new connectedness state.
|
// It contains the Id of the remote peer and the new connectedness state.
|
||||||
type EvtPeerConnectednessChange struct {
|
type EvtPeerConnectednessChanged struct {
|
||||||
RemotePeerId peer.ID
|
Peer peer.ID
|
||||||
Connectedness network.Connectedness
|
Connectedness network.Connectedness
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user