Struct sc_peerset::PeersetHandle [−][src]
pub struct PeersetHandle { /* fields omitted */ }
Shared handle to the peer set manager (PSM). Distributed around the code.
Implementations
impl PeersetHandle
[src]
impl PeersetHandle
[src]pub fn add_reserved_peer(&self, set_id: SetId, peer_id: PeerId)
[src]
Adds a new reserved peer. The peerset will make an effort to always remain connected to this peer.
Has no effect if the node was already a reserved peer.
Note: Keep in mind that the networking has to know an address for this node, otherwise it will not be able to connect to it.
pub fn remove_reserved_peer(&self, set_id: SetId, peer_id: PeerId)
[src]
Remove a previously-added reserved peer.
Has no effect if the node was not a reserved peer.
pub fn set_reserved_only(&self, set_id: SetId, reserved: bool)
[src]
Sets whether or not the peerset only has connections with nodes marked as reserved for the given set.
pub fn set_reserved_peers(&self, set_id: SetId, peer_ids: HashSet<PeerId>)
[src]
Set reserved peers to the new set.
pub fn report_peer(&self, peer_id: PeerId, score_diff: ReputationChange)
[src]
Reports an adjustment to the reputation of the given peer.
pub fn add_to_peers_set(&self, set_id: SetId, peer_id: PeerId)
[src]
Add a peer to a set.
pub fn remove_from_peers_set(&self, set_id: SetId, peer_id: PeerId)
[src]
Remove a peer from a set.
Trait Implementations
impl Clone for PeersetHandle
[src]
impl Clone for PeersetHandle
[src]