summaryrefslogtreecommitdiff
path: root/src/sys/socket
diff options
context:
space:
mode:
authorrabbott99 <rabbott4927@gmail.com>2019-04-09 13:48:38 -0400
committerrabbott99 <rabbott4927@gmail.com>2019-04-09 14:31:52 -0400
commit9f7deb1382c449bc5570f16138e4bc96d0d2a2ea (patch)
treefa8d5e4d2ef0a3bdad0eea7301c93d35cbc66ed1 /src/sys/socket
parent0059ddf435005c04e2caeb3dd0313d317a56e000 (diff)
downloadnix-9f7deb1382c449bc5570f16138e4bc96d0d2a2ea.zip
Uncomment to_std and from_std methods for IpAddr
Diffstat (limited to 'src/sys/socket')
-rw-r--r--src/sys/socket/addr.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sys/socket/addr.rs b/src/sys/socket/addr.rs
index 13459e9b..f0393f89 100644
--- a/src/sys/socket/addr.rs
+++ b/src/sys/socket/addr.rs
@@ -418,20 +418,19 @@ impl IpAddr {
IpAddr::V6(Ipv6Addr::new(a, b, c, d, e, f, g, h))
}
- /*
pub fn from_std(std: &net::IpAddr) -> IpAddr {
match *std {
net::IpAddr::V4(ref std) => IpAddr::V4(Ipv4Addr::from_std(std)),
net::IpAddr::V6(ref std) => IpAddr::V6(Ipv6Addr::from_std(std)),
}
}
+
pub fn to_std(&self) -> net::IpAddr {
match *self {
IpAddr::V4(ref ip) => net::IpAddr::V4(ip.to_std()),
IpAddr::V6(ref ip) => net::IpAddr::V6(ip.to_std()),
}
}
- */
}
impl fmt::Display for IpAddr {