Struct reth_net_banlist::BanList

source ·
pub struct BanList { /* private fields */ }
Expand description

Stores peers that should be taken out of circulation either indefinitely or until a certain timestamp

Implementations§

source§

impl BanList

source

pub fn new( banned_peers: impl IntoIterator<Item = B512>, banned_ips: impl IntoIterator<Item = IpAddr>, ) -> Self

Creates a new ban list that bans the given peers and ips indefinitely.

source

pub const fn new_with_timeout( banned_peers: HashMap<B512, Option<Instant>>, banned_ips: HashMap<IpAddr, Option<Instant>>, ) -> Self

Creates a new ban list that bans the given peers and ips with an optional timeout.

source

pub fn evict_peers(&mut self, now: Instant) -> Vec<B512>

Removes all peers that are no longer banned.

source

pub fn evict_ips(&mut self, now: Instant) -> Vec<IpAddr>

Removes all ip addresses that are no longer banned.

source

pub fn evict(&mut self, now: Instant) -> (Vec<IpAddr>, Vec<B512>)

Removes all entries that should no longer be banned.

Returns the evicted entries.

source

pub fn is_banned(&self, peer_id: &B512, ip: &IpAddr) -> bool

Returns true if either the given peer id or ip address is banned.

source

pub fn is_banned_ip(&self, ip: &IpAddr) -> bool

checks the ban list to see if it contains the given ip

source

pub fn is_banned_peer(&self, peer_id: &B512) -> bool

checks the ban list to see if it contains the given ip

source

pub fn unban_ip(&mut self, ip: &IpAddr)

Unbans the ip address

source

pub fn unban_peer(&mut self, peer_id: &B512)

Unbans the ip address

source

pub fn ban_ip_until(&mut self, ip: IpAddr, until: Instant)

Bans the IP until the timestamp.

This does not ban non-global IPs.

source

pub fn ban_peer_until(&mut self, node_id: B512, until: Instant)

Bans the peer until the timestamp

source

pub fn ban_ip(&mut self, ip: IpAddr)

Bans the IP indefinitely.

This does not ban non-global IPs.

source

pub fn ban_peer(&mut self, node_id: B512)

Bans the peer indefinitely,

source

pub fn ban_peer_with(&mut self, node_id: B512, until: Option<Instant>)

Bans the peer indefinitely or until the given timeout.

source

pub fn ban_ip_with(&mut self, ip: IpAddr, until: Option<Instant>)

Bans the ip indefinitely or until the given timeout.

This does not ban non-global IPs.

Trait Implementations§

source§

impl Clone for BanList

source§

fn clone(&self) -> BanList

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BanList

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for BanList

source§

fn default() -> BanList

Returns the “default value” for a type. Read more
source§

impl PartialEq for BanList

source§

fn eq(&self, other: &BanList) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for BanList

source§

impl StructuralPartialEq for BanList

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit #126799)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 96 bytes