diff options
| author | bors <bors@rust-lang.org> | 2016-01-17 12:23:57 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2016-01-17 12:23:57 +0000 |
| commit | bff52927f582e2ca8dea799bd58f06e654295e21 (patch) | |
| tree | 2286b17c8092d1e6a9a026ef979dd7ecd333b348 /src/libstd/net | |
| parent | 0b524edb043c22a577968290fed1a4ff9936a28a (diff) | |
| parent | 00a4eeadaf10156e2e2b7a0c050c2ca1ac826f76 (diff) | |
| download | rust-bff52927f582e2ca8dea799bd58f06e654295e21.tar.gz rust-bff52927f582e2ca8dea799bd58f06e654295e21.zip | |
Auto merge of #30975 - Manishearth:rollup, r=Manishearth
- Successful merges: #30938, #30940, #30943, #30949, #30952, #30957, #30959 - Failed merges:
Diffstat (limited to 'src/libstd/net')
| -rw-r--r-- | src/libstd/net/ip.rs | 23 | ||||
| -rw-r--r-- | src/libstd/net/parser.rs | 2 |
2 files changed, 22 insertions, 3 deletions
diff --git a/src/libstd/net/ip.rs b/src/libstd/net/ip.rs index 808cf5cc031..341ba98191a 100644 --- a/src/libstd/net/ip.rs +++ b/src/libstd/net/ip.rs @@ -89,6 +89,9 @@ impl Ipv4Addr { } /// Returns true if this is a loopback address (127.0.0.0/8). + /// + /// This property is defined by RFC 6890 + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_loopback(&self) -> bool { self.octets()[0] == 127 } @@ -100,6 +103,7 @@ impl Ipv4Addr { /// - 10.0.0.0/8 /// - 172.16.0.0/12 /// - 192.168.0.0/16 + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_private(&self) -> bool { match (self.octets()[0], self.octets()[1]) { (10, _) => true, @@ -110,6 +114,9 @@ impl Ipv4Addr { } /// Returns true if the address is link-local (169.254.0.0/16). + /// + /// This property is defined by RFC 6890 + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_link_local(&self) -> bool { self.octets()[0] == 169 && self.octets()[1] == 254 } @@ -130,7 +137,9 @@ impl Ipv4Addr { /// Returns true if this is a multicast address. /// - /// Multicast addresses have a most significant octet between 224 and 239. + /// Multicast addresses have a most significant octet between 224 and 239, + /// and is defined by RFC 5771 + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_multicast(&self) -> bool { self.octets()[0] >= 224 && self.octets()[0] <= 239 } @@ -138,6 +147,7 @@ impl Ipv4Addr { /// Returns true if this is a broadcast address. /// /// A broadcast address has all octets set to 255 as defined in RFC 919. + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_broadcast(&self) -> bool { self.octets()[0] == 255 && self.octets()[1] == 255 && self.octets()[2] == 255 && self.octets()[3] == 255 @@ -150,6 +160,7 @@ impl Ipv4Addr { /// - 192.0.2.0/24 (TEST-NET-1) /// - 198.51.100.0/24 (TEST-NET-2) /// - 203.0.113.0/24 (TEST-NET-3) + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_documentation(&self) -> bool { match(self.octets()[0], self.octets()[1], self.octets()[2], self.octets()[3]) { (192, 0, 2, _) => true, @@ -302,11 +313,17 @@ impl Ipv6Addr { } /// Returns true for the special 'unspecified' address ::. + /// + /// This property is defined in RFC 6890. + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_unspecified(&self) -> bool { self.segments() == [0, 0, 0, 0, 0, 0, 0, 0] } /// Returns true if this is a loopback address (::1). + /// + /// This property is defined in RFC 6890. + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_loopback(&self) -> bool { self.segments() == [0, 0, 0, 0, 0, 0, 0, 1] } @@ -378,7 +395,9 @@ impl Ipv6Addr { /// Returns true if this is a multicast address. /// - /// Multicast addresses have the form ff00::/8. + /// Multicast addresses have the form ff00::/8, and this property is defined + /// by RFC 3956. + #[stable(since = "1.7.0", feature = "ip_17")] pub fn is_multicast(&self) -> bool { (self.segments()[0] & 0xff00) == 0xff00 } diff --git a/src/libstd/net/parser.rs b/src/libstd/net/parser.rs index 79a269ff87c..91401c8e4fd 100644 --- a/src/libstd/net/parser.rs +++ b/src/libstd/net/parser.rs @@ -193,7 +193,7 @@ impl<'a> Parser<'a> { fn ipv6_addr_from_head_tail(head: &[u16], tail: &[u16]) -> Ipv6Addr { assert!(head.len() + tail.len() <= 8); let mut gs = [0; 8]; - gs.clone_from_slice(head); + gs[..head.len()].clone_from_slice(head); gs[(8 - tail.len()) .. 8].clone_from_slice(tail); Ipv6Addr::new(gs[0], gs[1], gs[2], gs[3], gs[4], gs[5], gs[6], gs[7]) } |
