[−][src]Struct libp2p_gossipsub::PeerScoreParams
Fields
topics: HashMap<TopicHash, TopicScoreParams>
Score parameters per topic.
topic_score_cap: f64
Aggregate topic score cap; this limits the total contribution of topics towards a positive score. It must be positive (or 0 for no cap).
app_specific_weight: f64
P5: Application-specific peer scoring
ip_colocation_factor_weight: f64
P6: IP-colocation factor.
The parameter has an associated counter which counts the number of peers with the same IP.
If the number of peers in the same IP exceeds ip_colocation_factor_threshold, then the value is the square of the difference, ie
(peers_in_same_ip - ip_colocation_threshold)^2`.
If the number of peers in the same IP is less than the threshold, then the value is 0.
The weight of the parameter MUST be negative, unless you want to disable for testing.
Note: In order to simulate many IPs in a manageable manner when testing, you can set the weight to 0
thus disabling the IP colocation penalty.
ip_colocation_factor_threshold: f64
ip_colocation_factor_whitelist: HashSet<IpAddr>
behaviour_penalty_weight: f64
P7: behavioural pattern penalties. This parameter has an associated counter which tracks misbehaviour as detected by the router. The router currently applies penalties for the following behaviors:
- attempting to re-graft before the prune backoff time has elapsed.
- not following up in IWANT requests for messages advertised with IHAVE.
The value of the parameter is the square of the counter over the threshold, which decays with BehaviourPenaltyDecay. The weight of the parameter MUST be negative (or zero to disable).
behaviour_penalty_threshold: f64
behaviour_penalty_decay: f64
decay_interval: Duration
The decay interval for parameter counters.
decay_to_zero: f64
Counter value below which it is considered 0.
retain_score: Duration
Time to remember counters for a disconnected peer.
Implementations
impl PeerScoreParams
[src]
Peer score parameter validation
Trait Implementations
impl Clone for PeerScoreParams
[src]
pub fn clone(&self) -> PeerScoreParams
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for PeerScoreParams
[src]
impl Default for PeerScoreParams
[src]
Auto Trait Implementations
impl RefUnwindSafe for PeerScoreParams
[src]
impl Send for PeerScoreParams
[src]
impl Sync for PeerScoreParams
[src]
impl Unpin for PeerScoreParams
[src]
impl UnwindSafe for PeerScoreParams
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,