Function domain::resolv::lookup::addr::lookup_addr

source ·
pub async fn lookup_addr<R: Resolver>(
    resolv: &R,
    addr: IpAddr
) -> Result<FoundAddrs<R>, Error>
Available on crate feature resolv only.
Expand description

Resolves the host names of an IP address.

The function will query DNS using the resolver represented by resolv. It will query DNS only and not consider any other database the system may have.

The value returned upon success can be turned into an iterator over host names via its iter() method. This is due to lifetime issues.