ckb_network::network

Struct NetworkController

Source
pub struct NetworkController { /* private fields */ }
Expand description

Network controller

Implementations§

Source§

impl NetworkController

Source

pub fn init_ckb2023(&self)

Set ckb2023 start

Source

pub fn load_ckb2023(&self) -> bool

Get ckb2023 flag

Source

pub fn public_urls(&self, max_urls: usize) -> Vec<(String, u8)>

Node listen address list

Source

pub fn version(&self) -> &String

ckb version

Source

pub fn node_id(&self) -> String

Node peer id’s base58 format string

Source

pub fn p2p_control(&self) -> &ServiceControl

p2p service control

Source

pub fn add_node(&self, address: Multiaddr)

Dial remote node

Source

pub fn remove_node(&self, peer_id: &PeerId)

Disconnect session with peer id

Source

pub fn get_banned_addrs(&self) -> Vec<BannedAddr>

Get banned peer list

Source

pub fn clear_banned_addrs(&self)

Clear banned list

Source

pub fn addr_info(&self, addr: &Multiaddr) -> Option<AddrInfo>

Get address info from peer store

Source

pub fn ban(&self, address: IpNetwork, ban_until: u64, ban_reason: String)

Ban an ip

Source

pub fn unban(&self, address: &IpNetwork)

Unban an ip

Source

pub fn connected_peers(&self) -> Vec<(PeerIndex, Peer)>

Return all connected peers’ information

Source

pub fn ban_peer( &self, peer_index: PeerIndex, duration: Duration, reason: String, )

Ban an peer through peer index

Source

pub fn broadcast( &self, proto_id: ProtocolId, data: Bytes, ) -> Result<(), SendErrorKind>

Broadcast a message to all connected peers

Source

pub fn quick_broadcast( &self, proto_id: ProtocolId, data: Bytes, ) -> Result<(), SendErrorKind>

Broadcast a message to all connected peers through quick queue

Source

pub fn send_message_to( &self, session_id: SessionId, proto_id: ProtocolId, data: Bytes, ) -> Result<(), SendErrorKind>

Send message to one connected peer

Source

pub fn is_active(&self) -> bool

network message processing controller, always true, if false, discard any received messages

Source

pub fn set_active(&self, active: bool)

Change active status, if set false discard any received messages

Source

pub fn protocols(&self) -> Vec<(ProtocolId, String, Vec<String>)>

Return all connected peers’ protocols info

Source

pub fn ping_peers(&self)

Try ping all connected peers

Trait Implementations§

Source§

impl Clone for NetworkController

Source§

fn clone(&self) -> NetworkController

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

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> AsAny for T
where T: Any,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Cast to trait Any
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 u8)

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

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

Source§

fn __clone_box(&self, _: Private) -> *mut ()

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T