Enum libp2p_dns::DnsErr
source · pub enum DnsErr<TErr> {
Transport(TErr),
ResolveError(ResolveError),
MultiaddrNotSupported(Multiaddr),
TooManyLookups,
}
Expand description
The possible errors of a GenDnsConfig
wrapped transport.
Variants§
Transport(TErr)
The underlying transport encountered an error.
ResolveError(ResolveError)
DNS resolution failed.
MultiaddrNotSupported(Multiaddr)
DNS resolution was successful, but the underlying transport refused the resolved address.
TooManyLookups
DNS resolution involved too many lookups.
DNS resolution on dialing performs up to 32 DNS lookups. If these are not sufficient to obtain a fully-resolved address, this error is returned and the DNS records for the domain(s) being dialed should be investigated.
Trait Implementations§
source§impl<TErr> Error for DnsErr<TErr>where
TErr: Error + 'static,
impl<TErr> Error for DnsErr<TErr>where TErr: Error + 'static,
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()