1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
use std::io;
use std::net::IpAddr;
use std::str;
#[cfg(unix)]
use libc::{SOCK_STREAM};
#[cfg(windows)]
use winapi::{SOCK_STREAM};
use addrinfo::{getaddrinfo, AddrInfoHints};
use nameinfo::getnameinfo;
pub fn lookup_host(host: &str) -> io::Result<Vec<IpAddr>> {
let hints = AddrInfoHints {
socktype: SOCK_STREAM,
..AddrInfoHints::default()
};
match getaddrinfo(Some(host), None, Some(hints)) {
Ok(addrs) => {
let addrs: io::Result<Vec<_>> = addrs.map(|r| r.map(|a| a.sockaddr.ip())).collect();
addrs
},
#[cfg(unix)]
Err(e) => {
use libc;
unsafe {
libc::res_init();
}
Err(e)
},
#[cfg(not(unix))]
Err(e) => Err(e),
}
}
pub fn lookup_addr(addr: &IpAddr) -> io::Result<String> {
let sock = (*addr, 0).into();
match getnameinfo(&sock, 0) {
Ok((name, _)) => Ok(name),
#[cfg(unix)]
Err(e) => {
use libc;
unsafe {
libc::res_init();
}
Err(e)
},
#[cfg(not(unix))]
Err(e) => Err(e),
}
}
#[test]
fn test_localhost() {
let ips = lookup_host("localhost").unwrap();
assert!(ips.contains(&IpAddr::V4("127.0.0.1".parse().unwrap())));
assert!(!ips.contains(&IpAddr::V4("10.0.0.1".parse().unwrap())));
let name = lookup_addr(&IpAddr::V4("127.0.0.1".parse().unwrap()));
assert_eq!(name.unwrap(), "localhost");
}