Enum sc_peerset::Message
source · pub enum Message {
Connect {
set_id: SetId,
peer_id: PeerId,
},
Drop {
set_id: SetId,
peer_id: PeerId,
},
Accept(IncomingIndex),
Reject(IncomingIndex),
}
Expand description
Message that can be sent by the peer set manager (PSM).
Variants§
Connect
Request to open a connection to the given peer. From the point of view of the PSM, we are immediately connected.
Drop
Drop the connection to the given peer, or cancel the connection attempt after a Connect
.
Accept(IncomingIndex)
Equivalent to Connect
for the peer corresponding to this incoming index.
Reject(IncomingIndex)
Equivalent to Drop
for the peer corresponding to this incoming index.