pub struct BlockingResolver { /* private fields */ }
Expand description

A blocking DNS resolver.

Implementations§

source§

impl BlockingResolver

source

pub fn new() -> Result<Self, Error>

Create a new BlockingResolver, using default Options.

source

pub fn with_options(options: Options) -> Result<Self, Error>

Create a new BlockingResolver, with the given Options.

source

pub fn reinit(&self) -> Result<&Self>

Reinitialize a channel from system configuration.

source

pub fn set_servers(&self, servers: &[&str]) -> Result<&Self>

Set the list of servers to contact, instead of the servers specified in resolv.conf or the local named.

String format is host[:port]. IPv6 addresses with ports require square brackets eg [2001:4860:4860::8888]:53.

source

pub fn set_local_ipv4(&self, ipv4: Ipv4Addr) -> &Self

Set the local IPv4 address from which to make queries.

source

pub fn set_local_ipv6(&self, ipv6: &Ipv6Addr) -> &Self

Set the local IPv6 address from which to make queries.

source

pub fn set_local_device(&self, device: &str) -> &Self

Set the local device from which to make queries.

source

pub fn set_sortlist(&self, sortlist: &[&str]) -> Result<&Self>

Initializes an address sortlist configuration, so that addresses returned by get_host_by_name() are sorted according to the sortlist.

Each element of the sortlist holds an IP-address/netmask pair. The netmask is optional but follows the address after a slash if present. For example: “130.155.160.0/255.255.240.0”, or “130.155.0.0”.

source

pub fn query_a(&self, name: &str) -> Result<AResults>

Look up the A records associated with name.

source

pub fn search_a(&self, name: &str) -> Result<AResults>

Search for the A records associated with name.

source

pub fn query_aaaa(&self, name: &str) -> Result<AAAAResults>

Look up the AAAA records associated with name.

source

pub fn search_aaaa(&self, name: &str) -> Result<AAAAResults>

Search for the AAAA records associated with name.

source

pub fn query_caa(&self, name: &str) -> Result<CAAResults>

Look up the CAA records associated with name.

source

pub fn search_caa(&self, name: &str) -> Result<CAAResults>

Search for the CAA records associated with name.

source

pub fn query_cname(&self, name: &str) -> Result<CNameResults>

Look up the CNAME records associated with name.

source

pub fn search_cname(&self, name: &str) -> Result<CNameResults>

Search for the CNAME records associated with name.

source

pub fn query_mx(&self, name: &str) -> Result<MXResults>

Look up the MX records associated with name.

source

pub fn search_mx(&self, name: &str) -> Result<MXResults>

Search for the MX records associated with name.

source

pub fn query_naptr(&self, name: &str) -> Result<NAPTRResults>

Look up the NAPTR records associated with name.

source

pub fn search_naptr(&self, name: &str) -> Result<NAPTRResults>

Search for the NAPTR records associated with name.

source

pub fn query_ns(&self, name: &str) -> Result<NSResults>

Look up the NS records associated with name.

source

pub fn search_ns(&self, name: &str) -> Result<NSResults>

Search for the NS records associated with name.

source

pub fn query_ptr(&self, name: &str) -> Result<PTRResults>

Look up the PTR records associated with name.

source

pub fn search_ptr(&self, name: &str) -> Result<PTRResults>

Search for the PTR records associated with name.

source

pub fn query_soa(&self, name: &str) -> Result<SOAResult>

Look up the SOA records associated with name.

source

pub fn search_soa(&self, name: &str) -> Result<SOAResult>

Search for the SOA records associated with name.

source

pub fn query_srv(&self, name: &str) -> Result<SRVResults>

Look up the SRV records associated with name.

source

pub fn search_srv(&self, name: &str) -> Result<SRVResults>

Search for the SRV records associated with name.

source

pub fn query_txt(&self, name: &str) -> Result<TXTResults>

Look up the TXT records associated with name.

source

pub fn search_txt(&self, name: &str) -> Result<TXTResults>

Search for the TXT records associated with name.

source

pub fn query_uri(&self, name: &str) -> Result<URIResults>

Look up the URI records associated with name.

source

pub fn search_uri(&self, name: &str) -> Result<URIResults>

Search for the URI records associated with name.

source

pub fn get_host_by_address(&self, address: &IpAddr) -> Result<HostResults>

Perform a host query by address.

This method is one of the very few places where this library performs strictly more allocation than the underlying c-ares code. If this is a problem for you, you should prefer to use the analogous method on the Resolver.

source

pub fn get_host_by_name( &self, name: &str, family: AddressFamily ) -> Result<HostResults>

Perform a host query by name.

This method is one of the very few places where this library performs strictly more allocation than the underlying c-ares code. If this is a problem for you, you should prefer to use the analogous method on the Resolver.

source

pub fn get_name_info<F>( &self, address: &SocketAddr, flags: NIFlags ) -> Result<NameInfoResult>

Address-to-nodename translation in protocol-independent manner.

This method is one of the very few places where this library performs strictly more allocation than the underlying c-ares code. If this is a problem for you, you should prefer to use the analogous method on the Resolver.

source

pub fn query( &self, name: &str, dns_class: u16, query_type: u16 ) -> Result<Vec<u8>>

Initiate a single-question DNS query for name. The class and type of the query are per the provided parameters, taking values as defined in arpa/nameser.h.

This method is one of the very few places where this library performs strictly more allocation than the underlying c-ares code. If this is a problem for you, you should prefer to use the analogous method on the Resolver.

This method is provided so that users can query DNS types for which c-ares does not provide a parser; or in case a third-party parser is preferred. Usually, if a suitable query_xxx() is available, that should be used.

source

pub fn search( &self, name: &str, dns_class: u16, query_type: u16 ) -> Result<Vec<u8>>

Initiate a series of single-question DNS queries for name. The class and type of the query are per the provided parameters, taking values as defined in arpa/nameser.h.

This method is one of the very few places where this library performs strictly more allocation than the underlying c-ares code. If this is a problem for you, you should prefer to use the analogous method on the Resolver.

This method is provided so that users can search DNS types for which c-ares does not provide a parser; or in case a third-party parser is preferred. Usually, if a suitable search_xxx() is available, that should be used.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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, U> TryFrom<U> for Twhere U: Into<T>,

§

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 Twhere U: TryFrom<T>,

§

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

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more