Struct libp2p_mdns::Config
source · pub struct Config {
pub ttl: Duration,
pub query_interval: Duration,
pub enable_ipv6: bool,
}
Expand description
Configuration for mDNS.
Fields§
§ttl: Duration
TTL to use for mdns records.
query_interval: Duration
Interval at which to poll the network for new peers. This isn’t necessary during normal operation but avoids the case that an initial packet was lost and not discovering any peers until a new peer joins the network. Receiving an mdns packet resets the timer preventing unnecessary traffic.
enable_ipv6: bool
Use IPv6 instead of IPv4.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Config
impl Send for Config
impl Sync for Config
impl Unpin for Config
impl UnwindSafe for Config
Blanket Implementations§
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
Mutably borrows from an owned value. Read more