2012-04-29 23:53:17 -05:00
|
|
|
#[doc="
|
|
|
|
Types/fns concerning Internet Protocol (IP), versions 4 & 6
|
|
|
|
"];
|
|
|
|
|
|
|
|
import vec;
|
|
|
|
import uint;
|
2012-06-22 17:31:56 -05:00
|
|
|
import iotask = uv::iotask::iotask;
|
|
|
|
import interact = uv::iotask::interact;
|
|
|
|
import comm::methods;
|
2012-04-29 23:53:17 -05:00
|
|
|
|
2012-06-17 22:36:36 -05:00
|
|
|
import sockaddr_in = uv::ll::sockaddr_in;
|
|
|
|
import sockaddr_in6 = uv::ll::sockaddr_in6;
|
2012-06-22 17:31:56 -05:00
|
|
|
import addrinfo = uv::ll::addrinfo;
|
|
|
|
import uv_getaddrinfo_t = uv::ll::uv_getaddrinfo_t;
|
2012-06-17 22:36:36 -05:00
|
|
|
import uv_ip4_addr = uv::ll::ip4_addr;
|
|
|
|
import uv_ip4_name = uv::ll::ip4_name;
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
import uv_ip6_addr = uv::ll::ip6_addr;
|
|
|
|
import uv_ip6_name = uv::ll::ip6_name;
|
2012-06-22 17:31:56 -05:00
|
|
|
import uv_getaddrinfo = uv::ll::getaddrinfo;
|
2012-06-25 10:02:34 -05:00
|
|
|
import uv_freeaddrinfo = uv::ll::freeaddrinfo;
|
2012-06-22 17:31:56 -05:00
|
|
|
import create_uv_getaddrinfo_t = uv::ll::getaddrinfo_t;
|
2012-06-25 10:02:34 -05:00
|
|
|
import set_data_for_req = uv::ll::set_data_for_req;
|
|
|
|
import get_data_for_req = uv::ll::get_data_for_req;
|
2012-06-22 17:31:56 -05:00
|
|
|
import ll = uv::ll;
|
2012-06-17 22:36:36 -05:00
|
|
|
|
2012-05-19 16:06:48 -05:00
|
|
|
export ip_addr, parse_addr_err;
|
2012-04-30 17:10:24 -05:00
|
|
|
export format_addr;
|
2012-06-22 17:31:56 -05:00
|
|
|
export v4, v6;
|
|
|
|
export get_addr;
|
2012-04-29 23:53:17 -05:00
|
|
|
|
|
|
|
#[doc = "An IP address"]
|
|
|
|
enum ip_addr {
|
|
|
|
#[doc="An IPv4 address"]
|
2012-06-17 22:36:36 -05:00
|
|
|
ipv4(sockaddr_in),
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
ipv6(sockaddr_in6)
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|
|
|
|
|
2012-05-19 16:06:48 -05:00
|
|
|
#[doc="
|
|
|
|
Human-friendly feedback on why a parse_addr attempt failed
|
|
|
|
"]
|
|
|
|
type parse_addr_err = {
|
|
|
|
err_msg: str
|
|
|
|
};
|
|
|
|
|
2012-04-29 23:53:17 -05:00
|
|
|
#[doc="
|
|
|
|
Convert a `ip_addr` to a str
|
|
|
|
|
|
|
|
# Arguments
|
|
|
|
|
|
|
|
* ip - a `std::net::ip::ip_addr`
|
|
|
|
"]
|
|
|
|
fn format_addr(ip: ip_addr) -> str {
|
|
|
|
alt ip {
|
2012-06-17 22:36:36 -05:00
|
|
|
ipv4(addr) {
|
|
|
|
unsafe {
|
|
|
|
let result = uv_ip4_name(&addr);
|
|
|
|
if result == "" {
|
|
|
|
fail "failed to convert inner sockaddr_in address to str"
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
ipv6(addr) {
|
|
|
|
unsafe {
|
|
|
|
let result = uv_ip6_name(&addr);
|
|
|
|
if result == "" {
|
|
|
|
fail "failed to convert inner sockaddr_in address to str"
|
|
|
|
}
|
|
|
|
result
|
|
|
|
}
|
2012-05-05 11:21:19 -05:00
|
|
|
}
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-22 17:31:56 -05:00
|
|
|
type get_addr_data = {
|
|
|
|
output_ch: comm::chan<result::result<[ip_addr],ip_get_addr_err>>
|
|
|
|
};
|
|
|
|
|
|
|
|
crust fn get_addr_cb(handle: *uv_getaddrinfo_t, status: libc::c_int,
|
|
|
|
res: *addrinfo) unsafe {
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, "in get_addr_cb");
|
|
|
|
let handle_data = get_data_for_req(handle) as
|
2012-06-22 17:31:56 -05:00
|
|
|
*get_addr_data;
|
|
|
|
if status == 0i32 {
|
|
|
|
if res != (ptr::null::<addrinfo>()) {
|
|
|
|
let mut out_vec = [];
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, #fmt("initial addrinfo: %?", res));
|
2012-06-22 17:31:56 -05:00
|
|
|
let mut curr_addr = res;
|
|
|
|
loop {
|
2012-06-25 10:02:34 -05:00
|
|
|
let new_ip_addr = if ll::is_ipv4_addrinfo(curr_addr) {
|
|
|
|
ipv4(copy((
|
|
|
|
*ll::addrinfo_as_sockaddr_in(curr_addr))))
|
2012-06-22 17:31:56 -05:00
|
|
|
}
|
|
|
|
else {
|
2012-06-25 10:02:34 -05:00
|
|
|
ipv6(copy((
|
|
|
|
*ll::addrinfo_as_sockaddr_in6(curr_addr))))
|
|
|
|
};
|
2012-06-22 17:31:56 -05:00
|
|
|
|
|
|
|
let next_addr = ll::get_next_addrinfo(curr_addr);
|
|
|
|
if next_addr == ptr::null::<addrinfo>() as *addrinfo {
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, "null next_addr encountered. no mas");
|
2012-06-22 17:31:56 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
else {
|
2012-06-25 10:02:34 -05:00
|
|
|
curr_addr = next_addr;
|
|
|
|
log(debug, #fmt("next_addr addrinfo: %?", curr_addr));
|
2012-06-22 17:31:56 -05:00
|
|
|
}
|
|
|
|
}
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, #fmt("successful process addrinfo result, len: %?",
|
|
|
|
vec::len(out_vec)));
|
2012-06-22 17:31:56 -05:00
|
|
|
(*handle_data).output_ch.send(result::ok(out_vec));
|
|
|
|
}
|
|
|
|
else {
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, "addrinfo pointer is NULL");
|
2012-06-22 17:31:56 -05:00
|
|
|
(*handle_data).output_ch.send(
|
|
|
|
result::err(get_addr_unknown_error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, "status != 0 error in get_addr_cb");
|
2012-06-22 17:31:56 -05:00
|
|
|
(*handle_data).output_ch.send(
|
|
|
|
result::err(get_addr_unknown_error));
|
|
|
|
}
|
2012-06-25 10:02:34 -05:00
|
|
|
if res != (ptr::null::<addrinfo>()) {
|
|
|
|
uv_freeaddrinfo(res);
|
|
|
|
}
|
|
|
|
log(debug, "leaving get_addr_cb");
|
2012-06-22 17:31:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
#[doc="
|
|
|
|
"]
|
|
|
|
enum ip_get_addr_err {
|
|
|
|
get_addr_unknown_error
|
|
|
|
}
|
|
|
|
|
|
|
|
#[doc="
|
|
|
|
"]
|
|
|
|
fn get_addr(++node: str, iotask: iotask)
|
|
|
|
-> result::result<[ip_addr], ip_get_addr_err> unsafe {
|
|
|
|
comm::listen {|output_ch|
|
|
|
|
str::unpack_slice(node) {|node_ptr, len|
|
2012-06-25 10:02:34 -05:00
|
|
|
log(debug, #fmt("slice len %?", len));
|
2012-06-22 17:31:56 -05:00
|
|
|
let handle = create_uv_getaddrinfo_t();
|
|
|
|
let handle_ptr = ptr::addr_of(handle);
|
|
|
|
let handle_data: get_addr_data = {
|
|
|
|
output_ch: output_ch
|
|
|
|
};
|
|
|
|
let handle_data_ptr = ptr::addr_of(handle_data);
|
|
|
|
interact(iotask) {|loop_ptr|
|
|
|
|
let result = uv_getaddrinfo(
|
|
|
|
loop_ptr,
|
|
|
|
handle_ptr,
|
|
|
|
get_addr_cb,
|
|
|
|
node_ptr,
|
|
|
|
ptr::null(),
|
|
|
|
ptr::null());
|
|
|
|
alt result {
|
|
|
|
0i32 {
|
2012-06-25 10:02:34 -05:00
|
|
|
set_data_for_req(handle_ptr, handle_data_ptr);
|
2012-06-22 17:31:56 -05:00
|
|
|
}
|
|
|
|
_ {
|
|
|
|
output_ch.send(result::err(get_addr_unknown_error));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
output_ch.recv()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-29 23:53:17 -05:00
|
|
|
mod v4 {
|
|
|
|
#[doc = "
|
|
|
|
Convert a str to `ip_addr`
|
|
|
|
|
|
|
|
# Failure
|
|
|
|
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
Fails if the string is not a valid IPv4 address
|
2012-04-29 23:53:17 -05:00
|
|
|
|
|
|
|
# Arguments
|
|
|
|
|
|
|
|
* ip - a string of the format `x.x.x.x`
|
|
|
|
|
|
|
|
# Returns
|
|
|
|
|
|
|
|
* an `ip_addr` of the `ipv4` variant
|
|
|
|
"]
|
|
|
|
fn parse_addr(ip: str) -> ip_addr {
|
2012-05-19 16:06:48 -05:00
|
|
|
alt try_parse_addr(ip) {
|
2012-06-17 22:36:36 -05:00
|
|
|
result::ok(addr) { copy(addr) }
|
2012-05-19 16:06:48 -05:00
|
|
|
result::err(err_data) {
|
|
|
|
fail err_data.err_msg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn try_parse_addr(ip: str) -> result::result<ip_addr,parse_addr_err> {
|
2012-06-17 22:36:36 -05:00
|
|
|
unsafe {
|
|
|
|
// need to figure out how to establish a parse failure..
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
let new_addr = uv_ip4_addr(ip, 22);
|
|
|
|
let reformatted_name = uv_ip4_name(&new_addr);
|
|
|
|
log(debug, #fmt("try_parse_addr: input ip: %s reparsed ip: %s",
|
|
|
|
ip, reformatted_name));
|
|
|
|
// here we're going to
|
|
|
|
let inaddr_none_val = "255.255.255.255";
|
|
|
|
if ip != inaddr_none_val && reformatted_name == inaddr_none_val {
|
|
|
|
result::err({err_msg:#fmt("failed to parse '%s'",
|
|
|
|
ip)})
|
|
|
|
}
|
|
|
|
else {
|
2012-06-25 10:02:34 -05:00
|
|
|
result::ok(ipv4(copy(new_addr)))
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
}
|
2012-05-19 16:06:48 -05:00
|
|
|
}
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|
|
|
|
}
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
mod v6 {
|
|
|
|
#[doc = "
|
|
|
|
Convert a str to `ip_addr`
|
|
|
|
|
|
|
|
# Failure
|
|
|
|
|
|
|
|
Fails if the string is not a valid IPv6 address
|
2012-04-29 23:53:17 -05:00
|
|
|
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
# Arguments
|
|
|
|
|
|
|
|
* ip - an ipv6 string. See RFC2460 for spec.
|
|
|
|
|
|
|
|
# Returns
|
|
|
|
|
|
|
|
* an `ip_addr` of the `ipv6` variant
|
|
|
|
"]
|
|
|
|
fn parse_addr(ip: str) -> ip_addr {
|
|
|
|
alt try_parse_addr(ip) {
|
|
|
|
result::ok(addr) { copy(addr) }
|
|
|
|
result::err(err_data) {
|
|
|
|
fail err_data.err_msg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn try_parse_addr(ip: str) -> result::result<ip_addr,parse_addr_err> {
|
|
|
|
unsafe {
|
|
|
|
// need to figure out how to establish a parse failure..
|
|
|
|
let new_addr = uv_ip6_addr(ip, 22);
|
|
|
|
let reparsed_name = uv_ip6_name(&new_addr);
|
|
|
|
log(debug, #fmt("v6::try_parse_addr ip: '%s' reparsed '%s'",
|
|
|
|
ip, reparsed_name));
|
|
|
|
// '::' appears to be uv_ip6_name() returns for bogus
|
|
|
|
// parses..
|
|
|
|
if ip != "::" && reparsed_name == "::" {
|
|
|
|
result::err({err_msg:#fmt("failed to parse '%s'",
|
|
|
|
ip)})
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
result::ok(ipv6(new_addr))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-06-25 10:02:34 -05:00
|
|
|
#[cfg(test)]
|
2012-04-29 23:53:17 -05:00
|
|
|
mod test {
|
|
|
|
#[test]
|
2012-06-17 22:36:36 -05:00
|
|
|
fn test_ipv4_parse_and_format_ip() {
|
std: adding net::ip::v6 utils and rudimentary tests, huzzah! (see caveats)
libuv's own ip vetting code appears to in a somewhat woeful state,
for both ipv4 and ipv6 (there are some notes in the tests for net_ip, as
well as stuff added in uv_ll). They are aware of this and welcome patches.
I have rudimentary code in place that can verify whether the provided str
ip was, in fact, validly parsed by libuv, making a few assumptions:
* for ipv4, we assume that the platform's INADDR_NONE val is 0xffffffff ,
I should write a helper to return this value from the platform's libc
headers instead of hard-coding it in rust.
* for ipv6, we assume that the library will always return '::' for
malformed inputs.. as is the case in 64bit ubuntu. I need to verify this
on other platforms.. but at least the debugging output is in place, so
if expectations don't line up, it'll be straightforward to address
2012-06-17 22:42:48 -05:00
|
|
|
let localhost_str = "127.0.0.1";
|
|
|
|
assert (format_addr(v4::parse_addr(localhost_str))
|
|
|
|
== localhost_str)
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_ipv6_parse_and_format_ip() {
|
|
|
|
let localhost_str = "::1";
|
|
|
|
let format_result = format_addr(v6::parse_addr(localhost_str));
|
|
|
|
log(debug, #fmt("results: expected: '%s' actual: '%s'",
|
|
|
|
localhost_str, format_result));
|
|
|
|
assert format_result == localhost_str;
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_ipv4_bad_parse() {
|
|
|
|
alt v4::try_parse_addr("b4df00d") {
|
|
|
|
result::err(err_info) {
|
|
|
|
log(debug, #fmt("got error as expected %?", err_info));
|
|
|
|
assert true;
|
|
|
|
}
|
|
|
|
result::ok(addr) {
|
|
|
|
fail #fmt("Expected failure, but got addr %?", addr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#[test]
|
|
|
|
fn test_ipv6_bad_parse() {
|
|
|
|
alt v6::try_parse_addr("::,~2234k;") {
|
|
|
|
result::err(err_info) {
|
|
|
|
log(debug, #fmt("got error as expected %?", err_info));
|
|
|
|
assert true;
|
|
|
|
}
|
|
|
|
result::ok(addr) {
|
|
|
|
fail #fmt("Expected failure, but got addr %?", addr);
|
|
|
|
}
|
|
|
|
}
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|
2012-06-25 10:02:34 -05:00
|
|
|
#[test]
|
|
|
|
fn test_get_addr() {
|
|
|
|
let localhost_name = "localhost";
|
|
|
|
let iotask = uv::global_loop::get();
|
|
|
|
let ga_result = get_addr(localhost_name, iotask);
|
|
|
|
if result::is_err(ga_result) {
|
|
|
|
fail "got err result from net::ip::get_addr();"
|
|
|
|
}
|
|
|
|
// note really sure how to realiably test/assert
|
|
|
|
// this.. mostly just wanting to see it work, atm.
|
|
|
|
let results = result::unwrap(ga_result);
|
|
|
|
log(debug, #fmt("test_get_addr: Number of results for %s: %?",
|
|
|
|
localhost_name, vec::len(results)));
|
|
|
|
for vec::each(results) {|r|
|
|
|
|
let ipv_prefix = alt r {
|
|
|
|
ipv4(_) {
|
|
|
|
"IPv4"
|
|
|
|
}
|
|
|
|
ipv6(_) {
|
|
|
|
"IPv6"
|
|
|
|
}
|
|
|
|
};
|
|
|
|
log(debug, #fmt("test_get_addr: result %s: '%s'",
|
|
|
|
ipv_prefix, format_addr(r)));
|
|
|
|
}
|
|
|
|
}
|
2012-04-29 23:53:17 -05:00
|
|
|
}
|