]> git.lizzy.rs Git - rust.git/commitdiff
Formatting changes to make tidy pass
authorAbhishek Chanda <abhishek.becs@gmail.com>
Wed, 2 Mar 2016 07:42:37 +0000 (23:42 -0800)
committerAbhishek Chanda <abhishek.becs@gmail.com>
Fri, 4 Mar 2016 19:01:06 +0000 (11:01 -0800)
src/libstd/net/ip.rs

index 55930e06e0e2a90127e036ced6ffdaf771f80b51..9c8ff44c7043f55aa5e84dc8521cf7080fa6996d 100644 (file)
@@ -122,7 +122,7 @@ pub fn is_link_local(&self) -> bool {
 
     /// Returns true if the address appears to be globally routable.
     /// See [iana-ipv4-special-registry][ipv4-sr].
-    /// [ipv4-sr]: http://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml
+    /// [ipv4-sr]: http://goo.gl/RaZ7lg
     ///
     /// The following return false:
     ///
@@ -131,10 +131,10 @@ pub fn is_link_local(&self) -> bool {
     /// - the link-local address (169.254.0.0/16)
     /// - the broadcast address (255.255.255.255/32)
     /// - test addresses used for documentation (192.0.2.0/24, 198.51.100.0/24 and 203.0.113.0/24)
+    /// - the unspecified address (0.0.0.0)
     pub fn is_global(&self) -> bool {
         !self.is_private() && !self.is_loopback() && !self.is_link_local() &&
-        !self.is_broadcast() && !self.is_documentation() && !self.is_unspecified() &&
-        !self.is_this_network()
+        !self.is_broadcast() && !self.is_documentation() && !self.is_unspecified()
     }
 
     /// Returns true if this is a multicast address.