Struct PeerScoreParams
pub struct PeerScoreParams {
pub topics: HashMap<TopicHash, TopicScoreParams>,
pub topic_score_cap: f64,
pub app_specific_weight: f64,
pub ip_colocation_factor_weight: f64,
pub ip_colocation_factor_threshold: f64,
pub ip_colocation_factor_whitelist: HashSet<IpAddr>,
pub behaviour_penalty_weight: f64,
pub behaviour_penalty_threshold: f64,
pub behaviour_penalty_decay: f64,
pub decay_interval: Duration,
pub decay_to_zero: f64,
pub retain_score: Duration,
}
gossipsub
only.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§
Trait Implementations§
§impl Clone for PeerScoreParams
impl Clone for PeerScoreParams
§fn clone(&self) -> PeerScoreParams
fn clone(&self) -> PeerScoreParams
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more§impl Debug for PeerScoreParams
impl Debug for PeerScoreParams
§impl Default for PeerScoreParams
impl Default for PeerScoreParams
§fn default() -> PeerScoreParams
fn default() -> PeerScoreParams
Auto Trait Implementations§
impl Freeze for PeerScoreParams
impl RefUnwindSafe for PeerScoreParams
impl Send for PeerScoreParams
impl Sync for PeerScoreParams
impl Unpin for PeerScoreParams
impl UnwindSafe for PeerScoreParams
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more