Struct trust_dns_resolver::config::ResolverOpts [] [src]

pub struct ResolverOpts {
    pub ndots: usize,
    pub timeout: Duration,
    pub attempts: usize,
    pub validate: bool,
    pub ip_strategy: LookupIpStrategy,
    pub cache_size: usize,
    pub use_hosts_file: bool,
    // some fields omitted
}

Configuration for the Resolver

Fields

Sets the number of dots that must appear (unless it's a final dot representing the root) that must appear before a query is assumted to include the TLD. The default is one, which means that www would never be assumed to be a TLD, and would always be appended to either the search

Specify the timeout for a request. Defaults to 5 seconds

Number of attempts before giving up. Defaults to 2

Use DNSSec to validate the request

The ip_strategy for the Resolver to use when lookup Ipv4 or Ipv6 addresses

Cache size is in number of records (some records can be large)

Check /ect/hosts file before dns requery (only works for unix like OS)

Trait Implementations

impl Clone for ResolverOpts
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for ResolverOpts
[src]

impl Default for ResolverOpts
[src]

[src]

Default values for the Reolver configuration.

This follows the resolv.conf defaults as defined in the Linux man pages