Enum sc_peerset::Message [−][src]
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
Request to open a connection to the given peer. From the point of view of the PSM, we are immediately connected.
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.
Tuple Fields of Accept
Reject(IncomingIndex)
Equivalent to Drop
for the peer corresponding to this incoming index.