about summary refs log tree commit diff
path: root/src/libstd/net
diff options
context:
space:
mode:
authorAbhishek Chanda <abhishek.becs@gmail.com>2016-09-26 17:16:34 -0700
committerAbhishek Chanda <abhishek.becs@gmail.com>2016-10-03 21:12:37 -0700
commitd9e64301856354cc22aaf5b92bfc6ac8b1beb50e (patch)
treec5eeab72fbcb01d4d9a6ea4c3d3513cc129366b4 /src/libstd/net
parentc2769285ad6d078c9a4499ad9e11278e4b78023c (diff)
downloadrust-d9e64301856354cc22aaf5b92bfc6ac8b1beb50e.tar.gz
rust-d9e64301856354cc22aaf5b92bfc6ac8b1beb50e.zip
Add two functions to check type of SockAddr
These can be used to determine the type of the underlying IP
address
Diffstat (limited to 'src/libstd/net')
-rw-r--r--src/libstd/net/addr.rs35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/libstd/net/addr.rs b/src/libstd/net/addr.rs
index d0b59b42c17..3fa917cbf9e 100644
--- a/src/libstd/net/addr.rs
+++ b/src/libstd/net/addr.rs
@@ -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());
+    }
 }