Struct libp2p::mdns::Mdns [−][src]
pub struct Mdns { /* fields omitted */ }A NetworkBehaviour for mDNS. Automatically discovers peers on the local network and adds
them to the topology.
Implementations
impl Mdns[src]
impl Mdns[src]pub async fn new() -> Result<Mdns, Error>[src]
Builds a new Mdns behaviour.
pub fn has_node(&self, peer_id: &PeerId) -> bool[src]
Returns true if the given PeerId is in the list of nodes discovered through mDNS.
pub fn discovered_nodes(&self) -> impl ExactSizeIterator[src]
Returns the list of nodes that we have discovered through mDNS and that are not expired.
Trait Implementations
impl NetworkBehaviour for Mdns[src]
impl NetworkBehaviour for Mdns[src]type ProtocolsHandler = DummyProtocolsHandler
Handler for all the protocols the network behaviour supports.
type OutEvent = MdnsEvent
Event generated by the NetworkBehaviour and that the swarm will report back.
pub fn new_handler(&mut self) -> <Mdns as NetworkBehaviour>::ProtocolsHandler[src]
pub fn addresses_of_peer(&mut self, peer_id: &PeerId) -> Vec<Multiaddr, Global>[src]
pub fn inject_connected(&mut self, &PeerId)[src]
pub fn inject_disconnected(&mut self, &PeerId)[src]
pub fn inject_event(
&mut self,
PeerId,
ConnectionId,
ev: <<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)[src]
&mut self,
PeerId,
ConnectionId,
ev: <<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::OutEvent
)
pub fn poll(
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Mdns as NetworkBehaviour>::OutEvent>>[src]
&mut self,
cx: &mut Context<'_>,
params: &mut impl PollParameters
) -> Poll<NetworkBehaviourAction<<<Mdns as NetworkBehaviour>::ProtocolsHandler as ProtocolsHandler>::InEvent, <Mdns as NetworkBehaviour>::OutEvent>>
pub fn inject_connection_established(
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)[src]
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
pub fn inject_connection_closed(
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)[src]
&mut self,
&PeerId,
&ConnectionId,
&ConnectedPoint
)
pub fn inject_address_change(
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)[src]
&mut self,
&PeerId,
&ConnectionId,
_old: &ConnectedPoint,
_new: &ConnectedPoint
)
pub fn inject_addr_reach_failure(
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)[src]
&mut self,
_peer_id: Option<&PeerId>,
_addr: &Multiaddr,
_error: &dyn Error
)
pub fn inject_dial_failure(&mut self, _peer_id: &PeerId)[src]
pub fn inject_new_listen_addr(&mut self, _addr: &Multiaddr)[src]
pub fn inject_expired_listen_addr(&mut self, _addr: &Multiaddr)[src]
pub fn inject_new_external_addr(&mut self, _addr: &Multiaddr)[src]
pub fn inject_listener_error(
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)[src]
&mut self,
_id: ListenerId,
_err: &(dyn Error + 'static)
)
pub fn inject_listener_closed(
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)[src]
&mut self,
_id: ListenerId,
_reason: Result<(), &Error>
)