Struct libp2p_core::network::Network
source · [−]pub struct Network<TTrans, THandler> where
TTrans: Transport,
THandler: IntoConnectionHandler, { /* private fields */ }Expand description
Implementation of Stream that handles the nodes.
Implementations
sourceimpl<TTrans, THandler> Network<TTrans, THandler> where
TTrans: Transport,
THandler: IntoConnectionHandler,
impl<TTrans, THandler> Network<TTrans, THandler> where
TTrans: Transport,
THandler: IntoConnectionHandler,
sourcepub fn is_connected(&self, peer: &PeerId) -> bool
pub fn is_connected(&self, peer: &PeerId) -> bool
Checks whether the network has an established connection to a peer.
sourcepub fn is_dialing(&self, peer: &PeerId) -> bool
pub fn is_dialing(&self, peer: &PeerId) -> bool
Checks whether the network has an ongoing dialing attempt to a peer.
sourceimpl<TTrans, THandler> Network<TTrans, THandler> where
TTrans: Transport + Clone + 'static,
<TTrans as Transport>::Error: Send + 'static,
THandler: IntoConnectionHandler + Send + 'static,
impl<TTrans, THandler> Network<TTrans, THandler> where
TTrans: Transport + Clone + 'static,
<TTrans as Transport>::Error: Send + 'static,
THandler: IntoConnectionHandler + Send + 'static,
sourcepub fn new(
transport: TTrans,
local_peer_id: PeerId,
config: NetworkConfig
) -> Self
pub fn new(
transport: TTrans,
local_peer_id: PeerId,
config: NetworkConfig
) -> Self
Creates a new node events stream.
sourcepub fn listen_on(
&mut self,
addr: Multiaddr
) -> Result<ListenerId, TransportError<TTrans::Error>>
pub fn listen_on(
&mut self,
addr: Multiaddr
) -> Result<ListenerId, TransportError<TTrans::Error>>
Start listening on the given multiaddress.
sourcepub fn remove_listener(&mut self, id: ListenerId) -> bool
pub fn remove_listener(&mut self, id: ListenerId) -> bool
Remove a previously added listener.
Returns true if there was a listener with this ID, false
otherwise.
sourcepub fn listen_addrs(&self) -> impl Iterator<Item = &Multiaddr>
pub fn listen_addrs(&self) -> impl Iterator<Item = &Multiaddr>
Returns an iterator that produces the list of addresses we are listening on.
sourcepub fn address_translation<'a>(
&'a self,
observed_addr: &'a Multiaddr
) -> Vec<Multiaddr> where
THandler: 'a,
pub fn address_translation<'a>(
&'a self,
observed_addr: &'a Multiaddr
) -> Vec<Multiaddr> where
THandler: 'a,
Maps the given observed_addr, representing an address of the local
node observed by a remote peer, onto the locally known listen addresses
to yield one or more addresses of the local node that may be publicly
reachable.
I.e. this method incorporates the view of other peers into the listen
addresses seen by the local node to account for possible IP and port
mappings performed by intermediate network devices in an effort to
obtain addresses for the local peer that are also reachable for peers
other than the peer who reported the observed_addr.
The translation is transport-specific. See Transport::address_translation.
sourcepub fn local_peer_id(&self) -> &PeerId
pub fn local_peer_id(&self) -> &PeerId
Returns the peer id of the local node.
sourcepub fn dial(
&mut self,
address: &Multiaddr,
handler: THandler
) -> Result<ConnectionId, DialError<THandler>> where
TTrans: Transport + Send,
TTrans::Output: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
pub fn dial(
&mut self,
address: &Multiaddr,
handler: THandler
) -> Result<ConnectionId, DialError<THandler>> where
TTrans: Transport + Send,
TTrans::Output: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
Dials a Multiaddr that may or may not encapsulate a
specific expected remote peer ID.
The given handler will be used to create the
Connection upon success and the
connection ID is returned.
sourcepub fn info(&self) -> NetworkInfo
pub fn info(&self) -> NetworkInfo
Returns information about the state of the Network.
sourcepub fn incoming_info(&self) -> impl Iterator<Item = IncomingInfo<'_>>
pub fn incoming_info(&self) -> impl Iterator<Item = IncomingInfo<'_>>
Returns an iterator for information on all pending incoming connections.
sourcepub fn connected_peers(&self) -> impl Iterator<Item = &PeerId>
pub fn connected_peers(&self) -> impl Iterator<Item = &PeerId>
Returns a list of all connected peers, i.e. peers to whom the Network
has at least one established connection.
sourcepub fn is_disconnected(&self, peer: &PeerId) -> bool
pub fn is_disconnected(&self, peer: &PeerId) -> bool
Checks whether the network has neither an ongoing dialing attempt, nor an established connection to a peer.
sourcepub fn dialing_peers(&self) -> impl Iterator<Item = &PeerId>
pub fn dialing_peers(&self) -> impl Iterator<Item = &PeerId>
Returns a list of all the peers to whom a new outgoing connection is currently being established.
sourcepub fn peer(&mut self, peer_id: PeerId) -> Peer<'_, TTrans, THandler>
pub fn peer(&mut self, peer_id: PeerId) -> Peer<'_, TTrans, THandler>
Obtains a view of a Peer with the given ID in the network.
sourcepub fn accept(
&mut self,
_: IncomingConnection<TTrans::ListenerUpgrade>,
handler: THandler
) -> Result<ConnectionId, (ConnectionLimit, THandler)> where
TTrans: Transport,
TTrans::Output: Send + 'static,
TTrans::Error: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
pub fn accept(
&mut self,
_: IncomingConnection<TTrans::ListenerUpgrade>,
handler: THandler
) -> Result<ConnectionId, (ConnectionLimit, THandler)> where
TTrans: Transport,
TTrans::Output: Send + 'static,
TTrans::Error: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
Accepts a pending incoming connection obtained via NetworkEvent::IncomingConnection,
adding it to the Networks connection pool subject to the configured limits.
Once the connection is established and all transport protocol upgrades
completed, the connection is associated with the provided handler.
sourcepub fn poll<'a, TMuxer>(
&'a mut self,
cx: &mut Context<'_>
) -> Poll<NetworkEvent<'a, TTrans, <<THandler as IntoConnectionHandler>::Handler as ConnectionHandler>::InEvent, <<THandler as IntoConnectionHandler>::Handler as ConnectionHandler>::OutEvent, THandler>> where
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::Error: Debug,
TMuxer::OutboundSubstream: Send,
THandler: IntoConnectionHandler + Send + 'static,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>> + Send,
pub fn poll<'a, TMuxer>(
&'a mut self,
cx: &mut Context<'_>
) -> Poll<NetworkEvent<'a, TTrans, <<THandler as IntoConnectionHandler>::Handler as ConnectionHandler>::InEvent, <<THandler as IntoConnectionHandler>::Handler as ConnectionHandler>::OutEvent, THandler>> where
TTrans: Transport<Output = (PeerId, TMuxer)>,
TTrans::Error: Send + 'static,
TTrans::Dial: Send + 'static,
TTrans::ListenerUpgrade: Send + 'static,
TMuxer: StreamMuxer + Send + Sync + 'static,
TMuxer::Error: Debug,
TMuxer::OutboundSubstream: Send,
THandler: IntoConnectionHandler + Send + 'static,
<THandler::Handler as ConnectionHandler>::Error: Error + Send + 'static,
<THandler::Handler as ConnectionHandler>::OutboundOpenInfo: Send,
<THandler::Handler as ConnectionHandler>::Error: Error + Send,
THandler::Handler: ConnectionHandler<Substream = Substream<TMuxer>> + Send,
Provides an API similar to Stream, except that it does not terminate.
Trait Implementations
sourceimpl<TTrans, THandler> Debug for Network<TTrans, THandler> where
TTrans: Debug + Transport,
THandler: Debug + ConnectionHandler,
impl<TTrans, THandler> Debug for Network<TTrans, THandler> where
TTrans: Debug + Transport,
THandler: Debug + ConnectionHandler,
impl<TTrans, THandler> Unpin for Network<TTrans, THandler> where
TTrans: Transport,
THandler: IntoConnectionHandler,
Auto Trait Implementations
impl<TTrans, THandler> !RefUnwindSafe for Network<TTrans, THandler>
impl<TTrans, THandler> Send for Network<TTrans, THandler> where
THandler: Send,
TTrans: Send,
<TTrans as Transport>::Error: Send,
<THandler as IntoConnectionHandler>::Handler: Send,
<TTrans as Transport>::Listener: Send,
<TTrans as Transport>::ListenerUpgrade: Send,
<TTrans as Transport>::Output: Send,
impl<TTrans, THandler> !Sync for Network<TTrans, THandler>
impl<TTrans, THandler> !UnwindSafe for Network<TTrans, THandler>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more