Auto merge of #36762 - achanda:sockaddr_type, r=alexcrichton

Add two functions to check type of SockAddr

These can be used to determine the type of the underlying IP
address

r? @alexcrichton
This commit is contained in:
bors 2016-10-12 11:28:53 -07:00 committed by GitHub
commit 9cb01365ee
1 changed files with 35 additions and 0 deletions

View File

@ -93,6 +93,26 @@ impl SocketAddr {
SocketAddr::V6(ref mut a) => a.set_port(new_port),
}
}
/// Returns true if the IP in this `SocketAddr` is a valid IPv4 address,
/// false if it's a valid IPv6 address.
#[unstable(feature = "sockaddr_checker", issue = "36949")]
pub fn is_ipv4(&self) -> bool {
match *self {
SocketAddr::V4(_) => true,
SocketAddr::V6(_) => false,
}
}
/// Returns true if the IP in this `SocketAddr` is a valid IPv6 address,
/// false if it's a valid IPv4 address.
#[unstable(feature = "sockaddr_checker", issue = "36949")]
pub fn is_ipv6(&self) -> bool {
match *self {
SocketAddr::V4(_) => false,
SocketAddr::V6(_) => true,
}
}
}
impl SocketAddrV4 {
@ -631,4 +651,19 @@ mod tests {
v6.set_scope_id(20);
assert_eq!(v6.scope_id(), 20);
}
#[test]
fn is_v4() {
let v4 = SocketAddr::V4(SocketAddrV4::new(Ipv4Addr::new(77, 88, 21, 11), 80));
assert!(v4.is_ipv4());
assert!(!v4.is_ipv6());
}
#[test]
fn is_v6() {
let v6 = SocketAddr::V6(SocketAddrV6::new(
Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 80, 10, 0));
assert!(!v6.is_ipv4());
assert!(v6.is_ipv6());
}
}