pub fn lookup_host(host: &str) -> Result<LookupHost>
Resolve the host specified by host
as a number of SocketAddr
instances.
This method may perform a DNS query to resolve host
and may also inspect system configuration to resolve the specified hostname.
The returned iterator will skip over any unknown addresses returned by the operating system.
#![feature(lookup_host)] use std::net; for host in net::lookup_host("rust-lang.org")? { println!("found address: {}", host); }
© 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/net/fn.lookup_host.html