2015-02-05 16:50:11 -08:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#![unstable(feature = "ip", reason = "extra functionality has not been \
|
|
|
|
|
scrutinized to the level that it should \
|
2015-08-13 10:12:38 -07:00
|
|
|
be stable",
|
|
|
|
|
issue = "27709")]
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
|
2015-02-05 16:50:11 -08:00
|
|
|
use cmp::Ordering;
|
|
|
|
|
use fmt;
|
2015-11-02 16:23:22 -08:00
|
|
|
use hash;
|
|
|
|
|
use mem;
|
2015-02-05 16:50:11 -08:00
|
|
|
use net::{hton, ntoh};
|
2015-11-02 16:23:22 -08:00
|
|
|
use sys::net::netc as c;
|
|
|
|
|
use sys_common::{AsInner, FromInner};
|
2015-02-05 16:50:11 -08:00
|
|
|
|
2015-10-07 23:11:25 +01:00
|
|
|
/// An IP address, either an IPv4 or IPv6 address.
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// Constructing an IPv4 address:
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr};
|
|
|
|
|
///
|
|
|
|
|
/// IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1));
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// Constructing an IPv6 address:
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
|
|
|
|
|
/// ```
|
2016-02-05 16:22:45 -08:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
2015-03-25 12:30:49 -07:00
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash, PartialOrd, Ord)]
|
|
|
|
|
pub enum IpAddr {
|
|
|
|
|
/// Representation of an IPv4 address.
|
2016-02-05 16:22:45 -08:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
2016-02-19 16:08:36 -08:00
|
|
|
V4(#[stable(feature = "ip_addr", since = "1.7.0")] Ipv4Addr),
|
2015-03-25 12:30:49 -07:00
|
|
|
/// Representation of an IPv6 address.
|
2016-02-05 16:22:45 -08:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
2016-02-19 16:08:36 -08:00
|
|
|
V6(#[stable(feature = "ip_addr", since = "1.7.0")] Ipv6Addr),
|
2015-03-25 12:30:49 -07:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 16:50:11 -08:00
|
|
|
/// Representation of an IPv4 address.
|
|
|
|
|
#[derive(Copy)]
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub struct Ipv4Addr {
|
2015-11-02 16:23:22 -08:00
|
|
|
inner: c::in_addr,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Representation of an IPv6 address.
|
|
|
|
|
#[derive(Copy)]
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub struct Ipv6Addr {
|
2015-11-02 16:23:22 -08:00
|
|
|
inner: c::in6_addr,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[allow(missing_docs)]
|
|
|
|
|
#[derive(Copy, PartialEq, Eq, Clone, Hash, Debug)]
|
|
|
|
|
pub enum Ipv6MulticastScope {
|
|
|
|
|
InterfaceLocal,
|
|
|
|
|
LinkLocal,
|
|
|
|
|
RealmLocal,
|
|
|
|
|
AdminLocal,
|
|
|
|
|
SiteLocal,
|
|
|
|
|
OrganizationLocal,
|
|
|
|
|
Global
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 16:59:32 -06:00
|
|
|
impl IpAddr {
|
2016-07-07 11:15:25 -06:00
|
|
|
/// Returns true for the special 'unspecified' address ([IPv4], [IPv6]).
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
2016-07-07 11:15:25 -06:00
|
|
|
/// [IPv4]: ../../std/net/struct.Ipv4Addr.html#method.is_unspecified
|
|
|
|
|
/// [IPv6]: ../../std/net/struct.Ipv6Addr.html#method.is_unspecified
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(0, 0, 0, 0)).is_unspecified(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0)).is_unspecified(), true);
|
|
|
|
|
/// ```
|
2016-08-11 14:08:24 -07:00
|
|
|
#[stable(feature = "ip_shared", since = "1.12.0")]
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_unspecified(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.is_unspecified(),
|
|
|
|
|
IpAddr::V6(ref a) => a.is_unspecified(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-07 11:15:25 -06:00
|
|
|
/// Returns true if this is a loopback address ([IPv4], [IPv6]).
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
2016-07-07 11:15:25 -06:00
|
|
|
/// [IPv4]: ../../std/net/struct.Ipv4Addr.html#method.is_loopback
|
|
|
|
|
/// [IPv6]: ../../std/net/struct.Ipv6Addr.html#method.is_loopback
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1)).is_loopback(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1)).is_loopback(), true);
|
|
|
|
|
/// ```
|
2016-08-11 14:08:24 -07:00
|
|
|
#[stable(feature = "ip_shared", since = "1.12.0")]
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_loopback(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.is_loopback(),
|
|
|
|
|
IpAddr::V6(ref a) => a.is_loopback(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-07 11:15:25 -06:00
|
|
|
/// Returns true if the address appears to be globally routable ([IPv4], [IPv6]).
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
2016-07-07 11:15:25 -06:00
|
|
|
/// [IPv4]: ../../std/net/struct.Ipv4Addr.html#method.is_global
|
|
|
|
|
/// [IPv6]: ../../std/net/struct.Ipv6Addr.html#method.is_global
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(80, 9, 12, 3)).is_global(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1)).is_global(),
|
|
|
|
|
/// true);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_global(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.is_global(),
|
|
|
|
|
IpAddr::V6(ref a) => a.is_global(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-07 11:15:25 -06:00
|
|
|
/// Returns true if this is a multicast address ([IPv4], [IPv6]).
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
2016-07-07 11:15:25 -06:00
|
|
|
/// [IPv4]: ../../std/net/struct.Ipv4Addr.html#method.is_multicast
|
|
|
|
|
/// [IPv6]: ../../std/net/struct.Ipv6Addr.html#method.is_multicast
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(224, 254, 0, 0)).is_multicast(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0)).is_multicast(), true);
|
|
|
|
|
/// ```
|
2016-08-11 14:08:24 -07:00
|
|
|
#[stable(feature = "ip_shared", since = "1.12.0")]
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_multicast(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.is_multicast(),
|
|
|
|
|
IpAddr::V6(ref a) => a.is_multicast(),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-07 11:15:25 -06:00
|
|
|
/// Returns true if this address is in a range designated for documentation ([IPv4], [IPv6]).
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
2016-07-07 11:15:25 -06:00
|
|
|
/// [IPv4]: ../../std/net/struct.Ipv4Addr.html#method.is_documentation
|
|
|
|
|
/// [IPv6]: ../../std/net/struct.Ipv6Addr.html#method.is_documentation
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_documentation(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0))
|
|
|
|
|
/// .is_documentation(), true);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_documentation(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.is_documentation(),
|
|
|
|
|
IpAddr::V6(ref a) => a.is_documentation(),
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-24 18:22:43 -07:00
|
|
|
|
|
|
|
|
/// Returns true if this address is a valid IPv4 address, false if it's a valid IPv6 address.
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_ipv4(), true);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0)).is_ipv4(),
|
|
|
|
|
/// false);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2017-01-25 15:37:20 -08:00
|
|
|
#[stable(feature = "ipaddr_checker", since = "1.16.0")]
|
2016-09-24 18:22:43 -07:00
|
|
|
pub fn is_ipv4(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(_) => true,
|
|
|
|
|
IpAddr::V6(_) => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns true if this address is a valid IPv6 address, false if it's a valid IPv4 address.
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(203, 0, 113, 6)).is_ipv6(), false);
|
|
|
|
|
/// assert_eq!(IpAddr::V6(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0)).is_ipv6(),
|
|
|
|
|
/// true);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2017-01-25 15:37:20 -08:00
|
|
|
#[stable(feature = "ipaddr_checker", since = "1.16.0")]
|
2016-09-24 18:22:43 -07:00
|
|
|
pub fn is_ipv6(&self) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(_) => false,
|
|
|
|
|
IpAddr::V6(_) => true,
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Ipv4Addr {
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Creates a new IPv4 address from four eight-bit octets.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2015-04-29 16:19:35 -05:00
|
|
|
/// The result will represent the IP address `a`.`b`.`c`.`d`.
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn new(a: u8, b: u8, c: u8, d: u8) -> Ipv4Addr {
|
|
|
|
|
Ipv4Addr {
|
2015-11-02 16:23:22 -08:00
|
|
|
inner: c::in_addr {
|
2015-02-05 16:50:11 -08:00
|
|
|
s_addr: hton(((a as u32) << 24) |
|
|
|
|
|
((b as u32) << 16) |
|
|
|
|
|
((c as u32) << 8) |
|
|
|
|
|
(d as u32)),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns the four eight-bit integers that make up this address.
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
/// assert_eq!(addr.octets(), [127, 0, 0, 1]);
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn octets(&self) -> [u8; 4] {
|
|
|
|
|
let bits = ntoh(self.inner.s_addr);
|
|
|
|
|
[(bits >> 24) as u8, (bits >> 16) as u8, (bits >> 8) as u8, bits as u8]
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true for the special 'unspecified' address (0.0.0.0).
|
2016-07-09 13:45:38 -04:00
|
|
|
///
|
|
|
|
|
/// This property is defined in _UNIX Network Programming, Second Edition_,
|
2016-11-16 19:56:01 +01:00
|
|
|
/// W. Richard Stevens, p. 891; see also [ip7].
|
|
|
|
|
///
|
2016-11-16 20:40:01 +01:00
|
|
|
/// [ip7]: http://man7.org/linux/man-pages/man7/ip.7.html
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(0, 0, 0, 0).is_unspecified(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(45, 22, 13, 197).is_unspecified(), false);
|
|
|
|
|
/// ```
|
2016-08-11 14:08:24 -07:00
|
|
|
#[stable(feature = "ip_shared", since = "1.12.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unspecified(&self) -> bool {
|
|
|
|
|
self.inner.s_addr == 0
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if this is a loopback address (127.0.0.0/8).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined by [RFC 1122].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 1122]: https://tools.ietf.org/html/rfc1122
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(127, 0, 0, 1).is_loopback(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(45, 22, 13, 197).is_loopback(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_loopback(&self) -> bool {
|
|
|
|
|
self.octets()[0] == 127
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns true if this is a private address.
|
|
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// The private address ranges are defined in [RFC 1918] and include:
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
|
|
|
|
/// - 10.0.0.0/8
|
|
|
|
|
/// - 172.16.0.0/12
|
|
|
|
|
/// - 192.168.0.0/16
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
|
|
|
|
/// [RFC 1918]: https://tools.ietf.org/html/rfc1918
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(10, 0, 0, 1).is_private(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(10, 10, 10, 10).is_private(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(172, 16, 10, 10).is_private(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(172, 29, 45, 14).is_private(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(172, 32, 0, 2).is_private(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 168, 0, 2).is_private(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 169, 0, 2).is_private(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_private(&self) -> bool {
|
|
|
|
|
match (self.octets()[0], self.octets()[1]) {
|
|
|
|
|
(10, _) => true,
|
|
|
|
|
(172, b) if b >= 16 && b <= 31 => true,
|
|
|
|
|
(192, 168) => true,
|
|
|
|
|
_ => false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if the address is link-local (169.254.0.0/16).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined by [RFC 3927].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 3927]: https://tools.ietf.org/html/rfc3927
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(169, 254, 0, 0).is_link_local(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(169, 254, 10, 65).is_link_local(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(16, 89, 10, 65).is_link_local(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_link_local(&self) -> bool {
|
|
|
|
|
self.octets()[0] == 169 && self.octets()[1] == 254
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns true if the address appears to be globally routable.
|
2016-03-01 10:58:56 -08:00
|
|
|
/// See [iana-ipv4-special-registry][ipv4-sr].
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2015-05-02 03:52:29 +02:00
|
|
|
/// The following return false:
|
|
|
|
|
///
|
|
|
|
|
/// - private address (10.0.0.0/8, 172.16.0.0/12 and 192.168.0.0/16)
|
|
|
|
|
/// - the loopback address (127.0.0.0/8)
|
|
|
|
|
/// - 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)
|
2016-03-01 23:42:37 -08:00
|
|
|
/// - the unspecified address (0.0.0.0)
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
|
|
|
|
/// [ipv4-sr]: http://goo.gl/RaZ7lg
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(10, 254, 0, 0).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 168, 10, 65).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(172, 16, 10, 65).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(0, 0, 0, 0).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(80, 9, 12, 3).is_global(), true);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_global(&self) -> bool {
|
2015-04-11 23:32:30 -07:00
|
|
|
!self.is_private() && !self.is_loopback() && !self.is_link_local() &&
|
2016-03-01 23:42:37 -08:00
|
|
|
!self.is_broadcast() && !self.is_documentation() && !self.is_unspecified()
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true if this is a multicast address (224.0.0.0/4).
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2016-01-15 10:07:52 -08:00
|
|
|
/// Multicast addresses have a most significant octet between 224 and 239,
|
2016-06-13 23:49:04 +01:00
|
|
|
/// and is defined by [RFC 5771].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 5771]: https://tools.ietf.org/html/rfc5771
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(224, 254, 0, 0).is_multicast(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(236, 168, 10, 65).is_multicast(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(172, 16, 10, 65).is_multicast(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_multicast(&self) -> bool {
|
|
|
|
|
self.octets()[0] >= 224 && self.octets()[0] <= 239
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true if this is a broadcast address (255.255.255.255).
|
2015-04-11 23:32:30 -07:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// A broadcast address has all octets set to 255 as defined in [RFC 919].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 919]: https://tools.ietf.org/html/rfc919
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_broadcast(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(236, 168, 10, 65).is_broadcast(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-04-11 23:32:30 -07:00
|
|
|
pub fn is_broadcast(&self) -> bool {
|
|
|
|
|
self.octets()[0] == 255 && self.octets()[1] == 255 &&
|
|
|
|
|
self.octets()[2] == 255 && self.octets()[3] == 255
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if this address is in a range designated for documentation.
|
2015-04-11 23:32:30 -07:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This is defined in [RFC 5737]:
|
2015-05-04 23:05:24 +02:00
|
|
|
///
|
2015-04-11 23:32:30 -07:00
|
|
|
/// - 192.0.2.0/24 (TEST-NET-1)
|
|
|
|
|
/// - 198.51.100.0/24 (TEST-NET-2)
|
|
|
|
|
/// - 203.0.113.0/24 (TEST-NET-3)
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
|
|
|
|
/// [RFC 5737]: https://tools.ietf.org/html/rfc5737
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).is_documentation(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 51, 100, 65).is_documentation(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(203, 0, 113, 6).is_documentation(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(193, 34, 17, 19).is_documentation(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-04-11 23:32:30 -07:00
|
|
|
pub fn is_documentation(&self) -> bool {
|
|
|
|
|
match(self.octets()[0], self.octets()[1], self.octets()[2], self.octets()[3]) {
|
2015-07-13 21:28:29 -04:00
|
|
|
(192, 0, 2, _) => true,
|
2015-04-11 23:32:30 -07:00
|
|
|
(198, 51, 100, _) => true,
|
2015-07-13 21:28:29 -04:00
|
|
|
(203, 0, 113, _) => true,
|
2015-04-11 23:32:30 -07:00
|
|
|
_ => false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Converts this address to an IPv4-compatible IPv6 address.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
|
|
|
|
/// a.b.c.d becomes ::a.b.c.d
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).to_ipv6_compatible(),
|
|
|
|
|
/// Ipv6Addr::new(0, 0, 0, 0, 0, 0, 49152, 767));
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn to_ipv6_compatible(&self) -> Ipv6Addr {
|
|
|
|
|
Ipv6Addr::new(0, 0, 0, 0, 0, 0,
|
|
|
|
|
((self.octets()[0] as u16) << 8) | self.octets()[1] as u16,
|
|
|
|
|
((self.octets()[2] as u16) << 8) | self.octets()[3] as u16)
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Converts this address to an IPv4-mapped IPv6 address.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
|
|
|
|
/// a.b.c.d becomes ::ffff:a.b.c.d
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).to_ipv6_mapped(),
|
|
|
|
|
/// Ipv6Addr::new(0, 0, 0, 0, 0, 65535, 49152, 767));
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn to_ipv6_mapped(&self) -> Ipv6Addr {
|
|
|
|
|
Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff,
|
|
|
|
|
((self.octets()[0] as u16) << 8) | self.octets()[1] as u16,
|
|
|
|
|
((self.octets()[2] as u16) << 8) | self.octets()[3] as u16)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-28 11:28:42 +01:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
2015-03-25 12:30:49 -07:00
|
|
|
impl fmt::Display for IpAddr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref a) => a.fmt(fmt),
|
|
|
|
|
IpAddr::V6(ref a) => a.fmt(fmt),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-12 15:34:09 -05:00
|
|
|
#[stable(feature = "ip_from_ip", since = "1.16.0")]
|
2016-12-12 15:34:09 -05:00
|
|
|
impl From<Ipv4Addr> for IpAddr {
|
|
|
|
|
fn from(ipv4: Ipv4Addr) -> IpAddr {
|
|
|
|
|
IpAddr::V4(ipv4)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-12 15:34:09 -05:00
|
|
|
#[stable(feature = "ip_from_ip", since = "1.16.0")]
|
2016-12-12 15:34:09 -05:00
|
|
|
impl From<Ipv6Addr> for IpAddr {
|
|
|
|
|
fn from(ipv6: Ipv6Addr) -> IpAddr {
|
|
|
|
|
IpAddr::V6(ipv6)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl fmt::Display for Ipv4Addr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
let octets = self.octets();
|
|
|
|
|
write!(fmt, "{}.{}.{}.{}", octets[0], octets[1], octets[2], octets[3])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl fmt::Debug for Ipv4Addr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Display::fmt(self, fmt)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Clone for Ipv4Addr {
|
|
|
|
|
fn clone(&self) -> Ipv4Addr { *self }
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl PartialEq for Ipv4Addr {
|
|
|
|
|
fn eq(&self, other: &Ipv4Addr) -> bool {
|
|
|
|
|
self.inner.s_addr == other.inner.s_addr
|
|
|
|
|
}
|
|
|
|
|
}
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
|
2016-12-18 23:07:27 -05:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialEq<Ipv4Addr> for IpAddr {
|
|
|
|
|
fn eq(&self, other: &Ipv4Addr) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref v4) => v4 == other,
|
|
|
|
|
IpAddr::V6(_) => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialEq<IpAddr> for Ipv4Addr {
|
|
|
|
|
fn eq(&self, other: &IpAddr) -> bool {
|
|
|
|
|
match *other {
|
|
|
|
|
IpAddr::V4(ref v4) => self == v4,
|
|
|
|
|
IpAddr::V6(_) => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Eq for Ipv4Addr {}
|
|
|
|
|
|
2015-02-17 20:48:07 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
|
impl hash::Hash for Ipv4Addr {
|
|
|
|
|
fn hash<H: hash::Hasher>(&self, s: &mut H) {
|
|
|
|
|
self.inner.s_addr.hash(s)
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl PartialOrd for Ipv4Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering> {
|
|
|
|
|
Some(self.cmp(other))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-18 23:07:27 -05:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialOrd<Ipv4Addr> for IpAddr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering> {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(ref v4) => v4.partial_cmp(other),
|
|
|
|
|
IpAddr::V6(_) => Some(Ordering::Greater),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialOrd<IpAddr> for Ipv4Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> {
|
|
|
|
|
match *other {
|
|
|
|
|
IpAddr::V4(ref v4) => self.partial_cmp(v4),
|
|
|
|
|
IpAddr::V6(_) => Some(Ordering::Less),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Ord for Ipv4Addr {
|
|
|
|
|
fn cmp(&self, other: &Ipv4Addr) -> Ordering {
|
2016-05-26 22:38:33 +03:00
|
|
|
ntoh(self.inner.s_addr).cmp(&ntoh(other.inner.s_addr))
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-02 16:23:22 -08:00
|
|
|
impl AsInner<c::in_addr> for Ipv4Addr {
|
|
|
|
|
fn as_inner(&self) -> &c::in_addr { &self.inner }
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
2015-11-02 16:23:22 -08:00
|
|
|
impl FromInner<c::in_addr> for Ipv4Addr {
|
|
|
|
|
fn from_inner(addr: c::in_addr) -> Ipv4Addr {
|
2015-02-05 16:50:11 -08:00
|
|
|
Ipv4Addr { inner: addr }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-20 20:37:58 -07:00
|
|
|
#[stable(feature = "ip_u32", since = "1.1.0")]
|
|
|
|
|
impl From<Ipv4Addr> for u32 {
|
|
|
|
|
fn from(ip: Ipv4Addr) -> u32 {
|
|
|
|
|
let ip = ip.octets();
|
|
|
|
|
((ip[0] as u32) << 24) + ((ip[1] as u32) << 16) + ((ip[2] as u32) << 8) + (ip[3] as u32)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_u32", since = "1.1.0")]
|
|
|
|
|
impl From<u32> for Ipv4Addr {
|
|
|
|
|
fn from(ip: u32) -> Ipv4Addr {
|
|
|
|
|
Ipv4Addr::new((ip >> 24) as u8, (ip >> 16) as u8, (ip >> 8) as u8, ip as u8)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-04 14:12:18 -08:00
|
|
|
#[stable(feature = "from_slice_v4", since = "1.9.0")]
|
|
|
|
|
impl From<[u8; 4]> for Ipv4Addr {
|
|
|
|
|
fn from(octets: [u8; 4]) -> Ipv4Addr {
|
|
|
|
|
Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-28 12:53:17 -08:00
|
|
|
#[stable(feature = "ip_from_slice", since = "1.17.0")]
|
|
|
|
|
impl From<[u8; 4]> for IpAddr {
|
|
|
|
|
fn from(octets: [u8; 4]) -> IpAddr {
|
|
|
|
|
IpAddr::V4(Ipv4Addr::from(octets))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Ipv6Addr {
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Creates a new IPv6 address from eight 16-bit segments.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2015-04-29 16:19:35 -05:00
|
|
|
/// The result will represent the IP address a:b:c:d:e:f:g:h.
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff);
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn new(a: u16, b: u16, c: u16, d: u16, e: u16, f: u16, g: u16,
|
|
|
|
|
h: u16) -> Ipv6Addr {
|
2015-11-02 16:23:22 -08:00
|
|
|
let mut addr: c::in6_addr = unsafe { mem::zeroed() };
|
|
|
|
|
addr.s6_addr = [(a >> 8) as u8, a as u8,
|
|
|
|
|
(b >> 8) as u8, b as u8,
|
|
|
|
|
(c >> 8) as u8, c as u8,
|
|
|
|
|
(d >> 8) as u8, d as u8,
|
|
|
|
|
(e >> 8) as u8, e as u8,
|
|
|
|
|
(f >> 8) as u8, f as u8,
|
|
|
|
|
(g >> 8) as u8, g as u8,
|
|
|
|
|
(h >> 8) as u8, h as u8];
|
|
|
|
|
Ipv6Addr { inner: addr }
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns the eight 16-bit segments that make up this address.
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).segments(),
|
|
|
|
|
/// [0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff]);
|
|
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn segments(&self) -> [u16; 8] {
|
2015-11-02 16:23:22 -08:00
|
|
|
let arr = &self.inner.s6_addr;
|
|
|
|
|
[
|
|
|
|
|
(arr[0] as u16) << 8 | (arr[1] as u16),
|
|
|
|
|
(arr[2] as u16) << 8 | (arr[3] as u16),
|
|
|
|
|
(arr[4] as u16) << 8 | (arr[5] as u16),
|
|
|
|
|
(arr[6] as u16) << 8 | (arr[7] as u16),
|
|
|
|
|
(arr[8] as u16) << 8 | (arr[9] as u16),
|
|
|
|
|
(arr[10] as u16) << 8 | (arr[11] as u16),
|
|
|
|
|
(arr[12] as u16) << 8 | (arr[13] as u16),
|
|
|
|
|
(arr[14] as u16) << 8 | (arr[15] as u16),
|
|
|
|
|
]
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true for the special 'unspecified' address (::).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined in [RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unspecified(), false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0).is_unspecified(), true);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unspecified(&self) -> bool {
|
|
|
|
|
self.segments() == [0, 0, 0, 0, 0, 0, 0, 0]
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if this is a loopback address (::1).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined in [RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_loopback(), false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_loopback(), true);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_loopback(&self) -> bool {
|
|
|
|
|
self.segments() == [0, 0, 0, 0, 0, 0, 0, 1]
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns true if the address appears to be globally routable.
|
|
|
|
|
///
|
2015-05-02 03:52:29 +02:00
|
|
|
/// The following return false:
|
|
|
|
|
///
|
|
|
|
|
/// - the loopback address
|
|
|
|
|
/// - link-local, site-local, and unique local unicast addresses
|
|
|
|
|
/// - interface-, link-, realm-, admin- and site-local multicast addresses
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_global(), true);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0x1).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0x1c9, 0, 0, 0xafc8, 0, 0x1).is_global(), true);
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_global(&self) -> bool {
|
|
|
|
|
match self.multicast_scope() {
|
|
|
|
|
Some(Ipv6MulticastScope::Global) => true,
|
|
|
|
|
None => self.is_unicast_global(),
|
|
|
|
|
_ => false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true if this is a unique local address (fc00::/7).
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined in [RFC 4193].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 4193]: https://tools.ietf.org/html/rfc4193
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unique_local(),
|
|
|
|
|
/// false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xfc02, 0, 0, 0, 0, 0, 0, 0).is_unique_local(), true);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unique_local(&self) -> bool {
|
|
|
|
|
(self.segments()[0] & 0xfe00) == 0xfc00
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if the address is unicast and link-local (fe80::/10).
|
2016-06-13 23:49:04 +01:00
|
|
|
///
|
|
|
|
|
/// This property is defined in [RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_link_local(),
|
|
|
|
|
/// false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xfe8a, 0, 0, 0, 0, 0, 0, 0).is_unicast_link_local(), true);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unicast_link_local(&self) -> bool {
|
|
|
|
|
(self.segments()[0] & 0xffc0) == 0xfe80
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true if this is a deprecated unicast site-local address
|
|
|
|
|
/// (fec0::/10).
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_site_local(),
|
|
|
|
|
/// false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xfec2, 0, 0, 0, 0, 0, 0, 0).is_unicast_site_local(), true);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unicast_site_local(&self) -> bool {
|
|
|
|
|
(self.segments()[0] & 0xffc0) == 0xfec0
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-11 18:38:59 -08:00
|
|
|
/// Returns true if this is an address reserved for documentation
|
2016-06-13 23:49:04 +01:00
|
|
|
/// (2001:db8::/32).
|
|
|
|
|
///
|
|
|
|
|
/// This property is defined in [RFC 3849].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 3849]: https://tools.ietf.org/html/rfc3849
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_documentation(),
|
|
|
|
|
/// false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_documentation(), true);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2016-03-11 18:38:59 -08:00
|
|
|
pub fn is_documentation(&self) -> bool {
|
|
|
|
|
(self.segments()[0] == 0x2001) && (self.segments()[1] == 0xdb8)
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-29 16:19:35 -05:00
|
|
|
/// Returns true if the address is a globally routable unicast address.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2015-05-02 03:52:29 +02:00
|
|
|
/// The following return false:
|
|
|
|
|
///
|
|
|
|
|
/// - the loopback address
|
|
|
|
|
/// - the link-local addresses
|
|
|
|
|
/// - the (deprecated) site-local addresses
|
|
|
|
|
/// - unique local addresses
|
2016-03-12 02:13:40 -08:00
|
|
|
/// - the unspecified address
|
2016-03-11 18:38:59 -08:00
|
|
|
/// - the address range reserved for documentation
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0x2001, 0xdb8, 0, 0, 0, 0, 0, 0).is_unicast_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_unicast_global(),
|
|
|
|
|
/// true);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_unicast_global(&self) -> bool {
|
|
|
|
|
!self.is_multicast()
|
|
|
|
|
&& !self.is_loopback() && !self.is_unicast_link_local()
|
|
|
|
|
&& !self.is_unicast_site_local() && !self.is_unique_local()
|
2016-03-11 18:38:59 -08:00
|
|
|
&& !self.is_unspecified() && !self.is_documentation()
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns the address's multicast scope if the address is multicast.
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
2016-11-22 17:04:24 +01:00
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
2016-11-18 17:19:39 +01:00
|
|
|
/// use std::net::{Ipv6Addr, Ipv6MulticastScope};
|
|
|
|
|
///
|
2016-11-22 17:04:24 +01:00
|
|
|
/// fn main() {
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xff0e, 0, 0, 0, 0, 0, 0, 0).multicast_scope(),
|
|
|
|
|
/// Some(Ipv6MulticastScope::Global));
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).multicast_scope(), None);
|
|
|
|
|
/// }
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn multicast_scope(&self) -> Option<Ipv6MulticastScope> {
|
|
|
|
|
if self.is_multicast() {
|
|
|
|
|
match self.segments()[0] & 0x000f {
|
|
|
|
|
1 => Some(Ipv6MulticastScope::InterfaceLocal),
|
|
|
|
|
2 => Some(Ipv6MulticastScope::LinkLocal),
|
|
|
|
|
3 => Some(Ipv6MulticastScope::RealmLocal),
|
|
|
|
|
4 => Some(Ipv6MulticastScope::AdminLocal),
|
|
|
|
|
5 => Some(Ipv6MulticastScope::SiteLocal),
|
|
|
|
|
8 => Some(Ipv6MulticastScope::OrganizationLocal),
|
|
|
|
|
14 => Some(Ipv6MulticastScope::Global),
|
|
|
|
|
_ => None
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-13 23:49:04 +01:00
|
|
|
/// Returns true if this is a multicast address (ff00::/8).
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// This property is defined by [RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2016-06-13 23:49:04 +01:00
|
|
|
/// [RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2016-11-18 17:19:39 +01:00
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).is_multicast(), true);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).is_multicast(), false);
|
|
|
|
|
/// ```
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn is_multicast(&self) -> bool {
|
|
|
|
|
(self.segments()[0] & 0xff00) == 0xff00
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-13 10:21:32 -04:00
|
|
|
/// Converts this address to an IPv4 address. Returns None if this address is
|
2015-02-05 16:50:11 -08:00
|
|
|
/// neither IPv4-compatible or IPv4-mapped.
|
|
|
|
|
///
|
|
|
|
|
/// ::a.b.c.d and ::ffff:a.b.c.d become a.b.c.d
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).to_ipv4(), None);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).to_ipv4(),
|
|
|
|
|
/// Some(Ipv4Addr::new(192, 10, 2, 255)));
|
2016-11-22 17:04:24 +01:00
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_ipv4(),
|
|
|
|
|
/// Some(Ipv4Addr::new(0, 0, 0, 1)));
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
pub fn to_ipv4(&self) -> Option<Ipv4Addr> {
|
|
|
|
|
match self.segments() {
|
|
|
|
|
[0, 0, 0, 0, 0, f, g, h] if f == 0 || f == 0xffff => {
|
|
|
|
|
Some(Ipv4Addr::new((g >> 8) as u8, g as u8,
|
|
|
|
|
(h >> 8) as u8, h as u8))
|
|
|
|
|
},
|
|
|
|
|
_ => None
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-03-18 13:53:40 +01:00
|
|
|
|
|
|
|
|
/// Returns the sixteen eight-bit integers the IPv6 address consists of.
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).octets(),
|
|
|
|
|
/// [255, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
|
|
|
|
|
/// ```
|
2016-08-11 14:08:24 -07:00
|
|
|
#[stable(feature = "ipv6_to_octets", since = "1.12.0")]
|
2016-03-18 13:53:40 +01:00
|
|
|
pub fn octets(&self) -> [u8; 16] {
|
|
|
|
|
self.inner.s6_addr
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl fmt::Display for Ipv6Addr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
match self.segments() {
|
|
|
|
|
// We need special cases for :: and ::1, otherwise they're formatted
|
|
|
|
|
// as ::0.0.0.[01]
|
|
|
|
|
[0, 0, 0, 0, 0, 0, 0, 0] => write!(fmt, "::"),
|
|
|
|
|
[0, 0, 0, 0, 0, 0, 0, 1] => write!(fmt, "::1"),
|
|
|
|
|
// Ipv4 Compatible address
|
|
|
|
|
[0, 0, 0, 0, 0, 0, g, h] => {
|
|
|
|
|
write!(fmt, "::{}.{}.{}.{}", (g >> 8) as u8, g as u8,
|
|
|
|
|
(h >> 8) as u8, h as u8)
|
|
|
|
|
}
|
|
|
|
|
// Ipv4-Mapped address
|
|
|
|
|
[0, 0, 0, 0, 0, 0xffff, g, h] => {
|
|
|
|
|
write!(fmt, "::ffff:{}.{}.{}.{}", (g >> 8) as u8, g as u8,
|
|
|
|
|
(h >> 8) as u8, h as u8)
|
|
|
|
|
},
|
|
|
|
|
_ => {
|
|
|
|
|
fn find_zero_slice(segments: &[u16; 8]) -> (usize, usize) {
|
|
|
|
|
let mut longest_span_len = 0;
|
|
|
|
|
let mut longest_span_at = 0;
|
|
|
|
|
let mut cur_span_len = 0;
|
|
|
|
|
let mut cur_span_at = 0;
|
|
|
|
|
|
2015-03-13 11:35:53 -07:00
|
|
|
for i in 0..8 {
|
2015-02-05 16:50:11 -08:00
|
|
|
if segments[i] == 0 {
|
|
|
|
|
if cur_span_len == 0 {
|
|
|
|
|
cur_span_at = i;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cur_span_len += 1;
|
|
|
|
|
|
|
|
|
|
if cur_span_len > longest_span_len {
|
|
|
|
|
longest_span_len = cur_span_len;
|
|
|
|
|
longest_span_at = cur_span_at;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
cur_span_len = 0;
|
|
|
|
|
cur_span_at = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
(longest_span_at, longest_span_len)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let (zeros_at, zeros_len) = find_zero_slice(&self.segments());
|
|
|
|
|
|
|
|
|
|
if zeros_len > 1 {
|
2015-12-05 00:44:16 +01:00
|
|
|
fn fmt_subslice(segments: &[u16], fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
if !segments.is_empty() {
|
2016-03-22 22:01:37 -05:00
|
|
|
write!(fmt, "{:x}", segments[0])?;
|
2015-12-05 00:44:16 +01:00
|
|
|
for &seg in &segments[1..] {
|
2016-03-22 22:01:37 -05:00
|
|
|
write!(fmt, ":{:x}", seg)?;
|
2015-12-05 00:44:16 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2016-03-22 22:01:37 -05:00
|
|
|
fmt_subslice(&self.segments()[..zeros_at], fmt)?;
|
|
|
|
|
fmt.write_str("::")?;
|
2015-12-05 00:44:16 +01:00
|
|
|
fmt_subslice(&self.segments()[zeros_at + zeros_len..], fmt)
|
2015-02-05 16:50:11 -08:00
|
|
|
} else {
|
|
|
|
|
let &[a, b, c, d, e, f, g, h] = &self.segments();
|
|
|
|
|
write!(fmt, "{:x}:{:x}:{:x}:{:x}:{:x}:{:x}:{:x}:{:x}",
|
|
|
|
|
a, b, c, d, e, f, g, h)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl fmt::Debug for Ipv6Addr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
|
|
|
|
|
fmt::Display::fmt(self, fmt)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Clone for Ipv6Addr {
|
|
|
|
|
fn clone(&self) -> Ipv6Addr { *self }
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl PartialEq for Ipv6Addr {
|
|
|
|
|
fn eq(&self, other: &Ipv6Addr) -> bool {
|
|
|
|
|
self.inner.s6_addr == other.inner.s6_addr
|
|
|
|
|
}
|
|
|
|
|
}
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
|
2016-12-18 23:07:27 -05:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialEq<IpAddr> for Ipv6Addr {
|
|
|
|
|
fn eq(&self, other: &IpAddr) -> bool {
|
|
|
|
|
match *other {
|
|
|
|
|
IpAddr::V4(_) => false,
|
|
|
|
|
IpAddr::V6(ref v6) => self == v6,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialEq<Ipv6Addr> for IpAddr {
|
|
|
|
|
fn eq(&self, other: &Ipv6Addr) -> bool {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(_) => false,
|
|
|
|
|
IpAddr::V6(ref v6) => v6 == other,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Eq for Ipv6Addr {}
|
|
|
|
|
|
2015-02-17 20:48:07 -08:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
|
impl hash::Hash for Ipv6Addr {
|
|
|
|
|
fn hash<H: hash::Hasher>(&self, s: &mut H) {
|
|
|
|
|
self.inner.s6_addr.hash(s)
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl PartialOrd for Ipv6Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering> {
|
|
|
|
|
Some(self.cmp(other))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-18 23:07:27 -05:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialOrd<Ipv6Addr> for IpAddr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering> {
|
|
|
|
|
match *self {
|
|
|
|
|
IpAddr::V4(_) => Some(Ordering::Less),
|
|
|
|
|
IpAddr::V6(ref v6) => v6.partial_cmp(other),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_cmp", since = "1.15.0")]
|
|
|
|
|
impl PartialOrd<IpAddr> for Ipv6Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> {
|
|
|
|
|
match *other {
|
|
|
|
|
IpAddr::V4(_) => Some(Ordering::Greater),
|
|
|
|
|
IpAddr::V6(ref v6) => self.partial_cmp(v6),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
std: Stabilize the `net` module
This commit performs a stabilization pass over the std::net module,
incorporating the changes from RFC 923. Specifically, the following actions were
taken:
Stable functionality:
* `net` (the name)
* `Shutdown`
* `Shutdown::{Read, Write, Both}`
* `lookup_host`
* `LookupHost`
* `SocketAddr`
* `SocketAddr::{V4, V6}`
* `SocketAddr::port`
* `SocketAddrV4`
* `SocketAddrV4::{new, ip, port}`
* `SocketAddrV6`
* `SocketAddrV4::{new, ip, port, flowinfo, scope_id}`
* Common trait impls for socket addr structures
* `ToSocketAddrs`
* `ToSocketAddrs::Iter`
* `ToSocketAddrs::to_socket_addrs`
* `ToSocketAddrs for {SocketAddr*, (Ipv*Addr, u16), str, (str, u16)}`
* `Ipv4Addr`
* `Ipv4Addr::{new, octets, to_ipv6_compatible, to_ipv6_mapped}`
* `Ipv6Addr`
* `Ipv6Addr::{new, segments, to_ipv4}`
* `TcpStream`
* `TcpStream::connect`
* `TcpStream::{peer_addr, local_addr, shutdown, try_clone}`
* `{Read,Write} for {TcpStream, &TcpStream}`
* `TcpListener`
* `TcpListener::bind`
* `TcpListener::{local_addr, try_clone, accept, incoming}`
* `Incoming`
* `UdpSocket`
* `UdpSocket::bind`
* `UdpSocket::{recv_from, send_to, local_addr, try_clone}`
Unstable functionality:
* Extra methods on `Ipv{4,6}Addr` for various methods of inspecting the address
and determining qualities of it.
* Extra methods on `TcpStream` to configure various protocol options.
* Extra methods on `UdpSocket` to configure various protocol options.
Deprecated functionality:
* The `socket_addr` method has been renamed to `local_addr`
This commit is a breaking change due to the restructuring of the `SocketAddr`
type as well as the renaming of the `socket_addr` method. Migration should be
fairly straightforward, however, after accounting for the new level of
abstraction in `SocketAddr` (protocol distinction at the socket address level,
not the IP address).
[breaking-change]
2015-03-13 14:22:33 -07:00
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
2015-02-05 16:50:11 -08:00
|
|
|
impl Ord for Ipv6Addr {
|
|
|
|
|
fn cmp(&self, other: &Ipv6Addr) -> Ordering {
|
2015-11-09 09:11:16 -08:00
|
|
|
self.segments().cmp(&other.segments())
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-02 16:23:22 -08:00
|
|
|
impl AsInner<c::in6_addr> for Ipv6Addr {
|
|
|
|
|
fn as_inner(&self) -> &c::in6_addr { &self.inner }
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
2015-11-02 16:23:22 -08:00
|
|
|
impl FromInner<c::in6_addr> for Ipv6Addr {
|
|
|
|
|
fn from_inner(addr: c::in6_addr) -> Ipv6Addr {
|
2015-02-05 16:50:11 -08:00
|
|
|
Ipv6Addr { inner: addr }
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-04-15 13:48:42 -07:00
|
|
|
|
2016-03-18 13:53:40 +01:00
|
|
|
#[stable(feature = "ipv6_from_octets", since = "1.9.0")]
|
|
|
|
|
impl From<[u8; 16]> for Ipv6Addr {
|
|
|
|
|
fn from(octets: [u8; 16]) -> Ipv6Addr {
|
|
|
|
|
let mut inner: c::in6_addr = unsafe { mem::zeroed() };
|
|
|
|
|
inner.s6_addr = octets;
|
|
|
|
|
Ipv6Addr::from_inner(inner)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-02 12:18:01 -05:00
|
|
|
#[stable(feature = "ipv6_from_segments", since = "1.15.0")]
|
|
|
|
|
impl From<[u16; 8]> for Ipv6Addr {
|
|
|
|
|
fn from(segments: [u16; 8]) -> Ipv6Addr {
|
|
|
|
|
let [a, b, c, d, e, f, g, h] = segments;
|
|
|
|
|
Ipv6Addr::new(a, b, c, d, e, f, g, h)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-28 12:53:17 -08:00
|
|
|
|
|
|
|
|
#[stable(feature = "ip_from_slice", since = "1.17.0")]
|
|
|
|
|
impl From<[u8; 16]> for IpAddr {
|
|
|
|
|
fn from(octets: [u8; 16]) -> IpAddr {
|
|
|
|
|
IpAddr::V6(Ipv6Addr::from(octets))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_from_slice", since = "1.17.0")]
|
|
|
|
|
impl From<[u16; 8]> for IpAddr {
|
|
|
|
|
fn from(octets: [u16; 8]) -> IpAddr {
|
|
|
|
|
IpAddr::V6(Ipv6Addr::from(octets))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-15 13:48:42 -07:00
|
|
|
// Tests for this module
|
2016-09-14 17:10:43 +00:00
|
|
|
#[cfg(all(test, not(target_os = "emscripten")))]
|
2015-04-15 13:48:42 -07:00
|
|
|
mod tests {
|
|
|
|
|
use net::*;
|
|
|
|
|
use net::Ipv6MulticastScope::*;
|
|
|
|
|
use net::test::{tsa, sa6, sa4};
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_from_str_ipv4() {
|
|
|
|
|
assert_eq!(Ok(Ipv4Addr::new(127, 0, 0, 1)), "127.0.0.1".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv4Addr::new(255, 255, 255, 255)), "255.255.255.255".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv4Addr::new(0, 0, 0, 0)), "0.0.0.0".parse());
|
|
|
|
|
|
|
|
|
|
// out of range
|
|
|
|
|
let none: Option<Ipv4Addr> = "256.0.0.1".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// too short
|
|
|
|
|
let none: Option<Ipv4Addr> = "255.0.0".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// too long
|
|
|
|
|
let none: Option<Ipv4Addr> = "255.0.0.1.2".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// no number between dots
|
|
|
|
|
let none: Option<Ipv4Addr> = "255.0..1".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_from_str_ipv6() {
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0)), "0:0:0:0:0:0:0:0".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)), "0:0:0:0:0:0:0:1".parse());
|
|
|
|
|
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1)), "::1".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0)), "::".parse());
|
|
|
|
|
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0x2a02, 0x6b8, 0, 0, 0, 0, 0x11, 0x11)),
|
|
|
|
|
"2a02:6b8::11:11".parse());
|
|
|
|
|
|
|
|
|
|
// too long group
|
|
|
|
|
let none: Option<Ipv6Addr> = "::00000".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// too short
|
|
|
|
|
let none: Option<Ipv6Addr> = "1:2:3:4:5:6:7".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// too long
|
|
|
|
|
let none: Option<Ipv6Addr> = "1:2:3:4:5:6:7:8:9".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// triple colon
|
|
|
|
|
let none: Option<Ipv6Addr> = "1:2:::6:7:8".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// two double colons
|
|
|
|
|
let none: Option<Ipv6Addr> = "1:2::6::8".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_from_str_ipv4_in_ipv6() {
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 49152, 545)),
|
|
|
|
|
"::192.0.2.33".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0, 0, 0, 0, 0, 0xFFFF, 49152, 545)),
|
|
|
|
|
"::FFFF:192.0.2.33".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0x64, 0xff9b, 0, 0, 0, 0, 49152, 545)),
|
|
|
|
|
"64:ff9b::192.0.2.33".parse());
|
|
|
|
|
assert_eq!(Ok(Ipv6Addr::new(0x2001, 0xdb8, 0x122, 0xc000, 0x2, 0x2100, 49152, 545)),
|
|
|
|
|
"2001:db8:122:c000:2:2100:192.0.2.33".parse());
|
|
|
|
|
|
|
|
|
|
// colon after v4
|
|
|
|
|
let none: Option<Ipv4Addr> = "::127.0.0.1:".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// not enough groups
|
|
|
|
|
let none: Option<Ipv6Addr> = "1.2.3.4.5:127.0.0.1".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// too many groups
|
|
|
|
|
let none: Option<Ipv6Addr> = "1.2.3.4.5:6:7:127.0.0.1".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_from_str_socket_addr() {
|
|
|
|
|
assert_eq!(Ok(sa4(Ipv4Addr::new(77, 88, 21, 11), 80)),
|
|
|
|
|
"77.88.21.11:80".parse());
|
2015-10-20 11:35:05 -07:00
|
|
|
assert_eq!(Ok(SocketAddrV4::new(Ipv4Addr::new(77, 88, 21, 11), 80)),
|
|
|
|
|
"77.88.21.11:80".parse());
|
2015-04-15 13:48:42 -07:00
|
|
|
assert_eq!(Ok(sa6(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1, 0, 0, 0, 1), 53)),
|
|
|
|
|
"[2a02:6b8:0:1::1]:53".parse());
|
2015-10-20 11:35:05 -07:00
|
|
|
assert_eq!(Ok(SocketAddrV6::new(Ipv6Addr::new(0x2a02, 0x6b8, 0, 1,
|
|
|
|
|
0, 0, 0, 1), 53, 0, 0)),
|
|
|
|
|
"[2a02:6b8:0:1::1]:53".parse());
|
2015-04-15 13:48:42 -07:00
|
|
|
assert_eq!(Ok(sa6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0x7F00, 1), 22)),
|
|
|
|
|
"[::127.0.0.1]:22".parse());
|
2015-10-20 11:35:05 -07:00
|
|
|
assert_eq!(Ok(SocketAddrV6::new(Ipv6Addr::new(0, 0, 0, 0, 0, 0,
|
|
|
|
|
0x7F00, 1), 22, 0, 0)),
|
|
|
|
|
"[::127.0.0.1]:22".parse());
|
2015-04-15 13:48:42 -07:00
|
|
|
|
|
|
|
|
// without port
|
|
|
|
|
let none: Option<SocketAddr> = "127.0.0.1".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// without port
|
|
|
|
|
let none: Option<SocketAddr> = "127.0.0.1:".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// wrong brackets around v4
|
|
|
|
|
let none: Option<SocketAddr> = "[127.0.0.1]:22".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
// port out of range
|
|
|
|
|
let none: Option<SocketAddr> = "127.0.0.1:123456".parse().ok();
|
|
|
|
|
assert_eq!(None, none);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ipv6_addr_to_string() {
|
|
|
|
|
// ipv4-mapped address
|
|
|
|
|
let a1 = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc000, 0x280);
|
|
|
|
|
assert_eq!(a1.to_string(), "::ffff:192.0.2.128");
|
|
|
|
|
|
|
|
|
|
// ipv4-compatible address
|
|
|
|
|
let a1 = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0xc000, 0x280);
|
|
|
|
|
assert_eq!(a1.to_string(), "::192.0.2.128");
|
|
|
|
|
|
|
|
|
|
// v6 address with no zero segments
|
|
|
|
|
assert_eq!(Ipv6Addr::new(8, 9, 10, 11, 12, 13, 14, 15).to_string(),
|
|
|
|
|
"8:9:a:b:c:d:e:f");
|
|
|
|
|
|
|
|
|
|
// reduce a single run of zeros
|
|
|
|
|
assert_eq!("ae::ffff:102:304",
|
|
|
|
|
Ipv6Addr::new(0xae, 0, 0, 0, 0, 0xffff, 0x0102, 0x0304).to_string());
|
|
|
|
|
|
|
|
|
|
// don't reduce just a single zero segment
|
|
|
|
|
assert_eq!("1:2:3:4:5:6:0:8",
|
|
|
|
|
Ipv6Addr::new(1, 2, 3, 4, 5, 6, 0, 8).to_string());
|
|
|
|
|
|
|
|
|
|
// 'any' address
|
|
|
|
|
assert_eq!("::", Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0).to_string());
|
|
|
|
|
|
|
|
|
|
// loopback address
|
|
|
|
|
assert_eq!("::1", Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_string());
|
|
|
|
|
|
|
|
|
|
// ends in zeros
|
|
|
|
|
assert_eq!("1::", Ipv6Addr::new(1, 0, 0, 0, 0, 0, 0, 0).to_string());
|
|
|
|
|
|
|
|
|
|
// two runs of zeros, second one is longer
|
|
|
|
|
assert_eq!("1:0:0:4::8", Ipv6Addr::new(1, 0, 0, 4, 0, 0, 0, 8).to_string());
|
|
|
|
|
|
|
|
|
|
// two runs of zeros, equal length
|
|
|
|
|
assert_eq!("1::4:5:0:0:8", Ipv6Addr::new(1, 0, 0, 4, 5, 0, 0, 8).to_string());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ipv4_to_ipv6() {
|
|
|
|
|
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x1234, 0x5678),
|
|
|
|
|
Ipv4Addr::new(0x12, 0x34, 0x56, 0x78).to_ipv6_mapped());
|
|
|
|
|
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0x1234, 0x5678),
|
|
|
|
|
Ipv4Addr::new(0x12, 0x34, 0x56, 0x78).to_ipv6_compatible());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ipv6_to_ipv4() {
|
|
|
|
|
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x1234, 0x5678).to_ipv4(),
|
|
|
|
|
Some(Ipv4Addr::new(0x12, 0x34, 0x56, 0x78)));
|
|
|
|
|
assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0x1234, 0x5678).to_ipv4(),
|
|
|
|
|
Some(Ipv4Addr::new(0x12, 0x34, 0x56, 0x78)));
|
|
|
|
|
assert_eq!(Ipv6Addr::new(0, 0, 1, 0, 0, 0, 0x1234, 0x5678).to_ipv4(),
|
|
|
|
|
None);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 16:59:32 -06:00
|
|
|
#[test]
|
|
|
|
|
fn ip_properties() {
|
|
|
|
|
fn check4(octets: &[u8; 4], unspec: bool, loopback: bool,
|
|
|
|
|
global: bool, multicast: bool, documentation: bool) {
|
|
|
|
|
let ip = IpAddr::V4(Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3]));
|
|
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
|
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
|
assert_eq!(ip.is_global(), global);
|
|
|
|
|
assert_eq!(ip.is_multicast(), multicast);
|
|
|
|
|
assert_eq!(ip.is_documentation(), documentation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn check6(str_addr: &str, unspec: bool, loopback: bool,
|
|
|
|
|
global: bool, u_doc: bool, mcast: bool) {
|
|
|
|
|
let ip = IpAddr::V6(str_addr.parse().unwrap());
|
|
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
|
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
|
assert_eq!(ip.is_global(), global);
|
|
|
|
|
assert_eq!(ip.is_documentation(), u_doc);
|
|
|
|
|
assert_eq!(ip.is_multicast(), mcast);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// address unspec loopbk global multicast doc
|
|
|
|
|
check4(&[0, 0, 0, 0], true, false, false, false, false);
|
|
|
|
|
check4(&[0, 0, 0, 1], false, false, true, false, false);
|
|
|
|
|
check4(&[0, 1, 0, 0], false, false, true, false, false);
|
|
|
|
|
check4(&[10, 9, 8, 7], false, false, false, false, false);
|
|
|
|
|
check4(&[127, 1, 2, 3], false, true, false, false, false);
|
|
|
|
|
check4(&[172, 31, 254, 253], false, false, false, false, false);
|
|
|
|
|
check4(&[169, 254, 253, 242], false, false, false, false, false);
|
|
|
|
|
check4(&[192, 0, 2, 183], false, false, false, false, true);
|
|
|
|
|
check4(&[192, 1, 2, 183], false, false, true, false, false);
|
|
|
|
|
check4(&[192, 168, 254, 253], false, false, false, false, false);
|
|
|
|
|
check4(&[198, 51, 100, 0], false, false, false, false, true);
|
|
|
|
|
check4(&[203, 0, 113, 0], false, false, false, false, true);
|
|
|
|
|
check4(&[203, 2, 113, 0], false, false, true, false, false);
|
|
|
|
|
check4(&[224, 0, 0, 0], false, false, true, true, false);
|
|
|
|
|
check4(&[239, 255, 255, 255], false, false, true, true, false);
|
|
|
|
|
check4(&[255, 255, 255, 255], false, false, false, false, false);
|
|
|
|
|
|
|
|
|
|
// address unspec loopbk global doc mcast
|
|
|
|
|
check6("::", true, false, false, false, false);
|
|
|
|
|
check6("::1", false, true, false, false, false);
|
|
|
|
|
check6("::0.0.0.2", false, false, true, false, false);
|
|
|
|
|
check6("1::", false, false, true, false, false);
|
|
|
|
|
check6("fc00::", false, false, false, false, false);
|
|
|
|
|
check6("fdff:ffff::", false, false, false, false, false);
|
|
|
|
|
check6("fe80:ffff::", false, false, false, false, false);
|
|
|
|
|
check6("febf:ffff::", false, false, false, false, false);
|
|
|
|
|
check6("fec0::", false, false, false, false, false);
|
|
|
|
|
check6("ff01::", false, false, false, false, true);
|
|
|
|
|
check6("ff02::", false, false, false, false, true);
|
|
|
|
|
check6("ff03::", false, false, false, false, true);
|
|
|
|
|
check6("ff04::", false, false, false, false, true);
|
|
|
|
|
check6("ff05::", false, false, false, false, true);
|
|
|
|
|
check6("ff08::", false, false, false, false, true);
|
|
|
|
|
check6("ff0e::", false, false, true, false, true);
|
|
|
|
|
check6("2001:db8:85a3::8a2e:370:7334", false, false, false, true, false);
|
|
|
|
|
check6("102:304:506:708:90a:b0c:d0e:f10", false, false, true, false, false);
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-15 13:48:42 -07:00
|
|
|
#[test]
|
|
|
|
|
fn ipv4_properties() {
|
|
|
|
|
fn check(octets: &[u8; 4], unspec: bool, loopback: bool,
|
|
|
|
|
private: bool, link_local: bool, global: bool,
|
|
|
|
|
multicast: bool, broadcast: bool, documentation: bool) {
|
|
|
|
|
let ip = Ipv4Addr::new(octets[0], octets[1], octets[2], octets[3]);
|
|
|
|
|
assert_eq!(octets, &ip.octets());
|
|
|
|
|
|
|
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
|
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
|
assert_eq!(ip.is_private(), private);
|
|
|
|
|
assert_eq!(ip.is_link_local(), link_local);
|
|
|
|
|
assert_eq!(ip.is_global(), global);
|
|
|
|
|
assert_eq!(ip.is_multicast(), multicast);
|
|
|
|
|
assert_eq!(ip.is_broadcast(), broadcast);
|
|
|
|
|
assert_eq!(ip.is_documentation(), documentation);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// address unspec loopbk privt linloc global multicast brdcast doc
|
2016-02-29 19:35:15 -08:00
|
|
|
check(&[0, 0, 0, 0], true, false, false, false, false, false, false, false);
|
|
|
|
|
check(&[0, 0, 0, 1], false, false, false, false, true, false, false, false);
|
2016-03-18 13:53:40 +01:00
|
|
|
check(&[0, 1, 0, 0], false, false, false, false, true, false, false, false);
|
2016-02-29 19:35:15 -08:00
|
|
|
check(&[10, 9, 8, 7], false, false, true, false, false, false, false, false);
|
|
|
|
|
check(&[127, 1, 2, 3], false, true, false, false, false, false, false, false);
|
|
|
|
|
check(&[172, 31, 254, 253], false, false, true, false, false, false, false, false);
|
|
|
|
|
check(&[169, 254, 253, 242], false, false, false, true, false, false, false, false);
|
|
|
|
|
check(&[192, 0, 2, 183], false, false, false, false, false, false, false, true);
|
|
|
|
|
check(&[192, 1, 2, 183], false, false, false, false, true, false, false, false);
|
|
|
|
|
check(&[192, 168, 254, 253], false, false, true, false, false, false, false, false);
|
|
|
|
|
check(&[198, 51, 100, 0], false, false, false, false, false, false, false, true);
|
|
|
|
|
check(&[203, 0, 113, 0], false, false, false, false, false, false, false, true);
|
|
|
|
|
check(&[203, 2, 113, 0], false, false, false, false, true, false, false, false);
|
|
|
|
|
check(&[224, 0, 0, 0], false, false, false, false, true, true, false, false);
|
|
|
|
|
check(&[239, 255, 255, 255], false, false, false, false, true, true, false, false);
|
|
|
|
|
check(&[255, 255, 255, 255], false, false, false, false, false, false, true, false);
|
2015-04-15 13:48:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ipv6_properties() {
|
2016-03-18 13:53:40 +01:00
|
|
|
fn check(str_addr: &str, octets: &[u8; 16], unspec: bool, loopback: bool,
|
2015-04-15 13:48:42 -07:00
|
|
|
unique_local: bool, global: bool,
|
2016-03-11 18:38:59 -08:00
|
|
|
u_link_local: bool, u_site_local: bool, u_global: bool, u_doc: bool,
|
2015-04-15 13:48:42 -07:00
|
|
|
m_scope: Option<Ipv6MulticastScope>) {
|
|
|
|
|
let ip: Ipv6Addr = str_addr.parse().unwrap();
|
|
|
|
|
assert_eq!(str_addr, ip.to_string());
|
2016-03-18 13:53:40 +01:00
|
|
|
assert_eq!(&ip.octets(), octets);
|
|
|
|
|
assert_eq!(Ipv6Addr::from(*octets), ip);
|
2015-04-15 13:48:42 -07:00
|
|
|
|
|
|
|
|
assert_eq!(ip.is_unspecified(), unspec);
|
|
|
|
|
assert_eq!(ip.is_loopback(), loopback);
|
|
|
|
|
assert_eq!(ip.is_unique_local(), unique_local);
|
|
|
|
|
assert_eq!(ip.is_global(), global);
|
|
|
|
|
assert_eq!(ip.is_unicast_link_local(), u_link_local);
|
|
|
|
|
assert_eq!(ip.is_unicast_site_local(), u_site_local);
|
|
|
|
|
assert_eq!(ip.is_unicast_global(), u_global);
|
2016-03-11 18:38:59 -08:00
|
|
|
assert_eq!(ip.is_documentation(), u_doc);
|
2015-04-15 13:48:42 -07:00
|
|
|
assert_eq!(ip.multicast_scope(), m_scope);
|
|
|
|
|
assert_eq!(ip.is_multicast(), m_scope.is_some());
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-18 13:53:40 +01:00
|
|
|
// unspec loopbk uniqlo global unill unisl uniglo doc mscope
|
|
|
|
|
check("::", &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
|
|
|
|
true, false, false, false, false, false, false, false, None);
|
|
|
|
|
check("::1", &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
|
|
|
|
|
false, true, false, false, false, false, false, false, None);
|
|
|
|
|
check("::0.0.0.2", &[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, true, false, false, true, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("1::", &[0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, true, false, false, true, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("fc00::", &[0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, true, false, false, false, false, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("fdff:ffff::", &[0xfd, 0xff, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, true, false, false, false, false, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("fe80:ffff::", &[0xfe, 0x80, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, true, false, false, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("febf:ffff::", &[0xfe, 0xbf, 0xff, 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, true, false, false, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("fec0::", &[0xfe, 0xc0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, true, false, false, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff01::", &[0xff, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(InterfaceLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff02::", &[0xff, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(LinkLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff03::", &[0xff, 3, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(RealmLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff04::", &[0xff, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(AdminLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff05::", &[0xff, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(SiteLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff08::", &[0xff, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, false, Some(OrganizationLocal));
|
2016-03-18 13:53:40 +01:00
|
|
|
check("ff0e::", &[0xff, 0xe, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, true, false, false, false, false, Some(Global));
|
|
|
|
|
check("2001:db8:85a3::8a2e:370:7334",
|
2016-03-18 13:53:40 +01:00
|
|
|
&[0x20, 1, 0xd, 0xb8, 0x85, 0xa3, 0, 0, 0, 0, 0x8a, 0x2e, 3, 0x70, 0x73, 0x34],
|
2016-03-11 18:38:59 -08:00
|
|
|
false, false, false, false, false, false, false, true, None);
|
2016-03-18 13:53:40 +01:00
|
|
|
check("102:304:506:708:90a:b0c:d0e:f10",
|
|
|
|
|
&[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16],
|
|
|
|
|
false, false, false, true, false, false, true, false, None);
|
2015-04-15 13:48:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn to_socket_addr_socketaddr() {
|
|
|
|
|
let a = sa4(Ipv4Addr::new(77, 88, 21, 11), 12345);
|
|
|
|
|
assert_eq!(Ok(vec![a]), tsa(a));
|
|
|
|
|
}
|
2015-04-20 20:37:58 -07:00
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_ipv4_to_int() {
|
|
|
|
|
let a = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
assert_eq!(u32::from(a), 2130706433);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_int_to_ipv4() {
|
|
|
|
|
let a = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
assert_eq!(Ipv4Addr::from(2130706433), a);
|
|
|
|
|
}
|
2015-11-09 09:11:16 -08:00
|
|
|
|
2016-03-04 14:12:18 -08:00
|
|
|
#[test]
|
2016-12-02 12:18:01 -05:00
|
|
|
fn ipv4_from_octets() {
|
2016-03-04 14:12:18 -08:00
|
|
|
assert_eq!(Ipv4Addr::from([127, 0, 0, 1]), Ipv4Addr::new(127, 0, 0, 1))
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-02 12:18:01 -05:00
|
|
|
#[test]
|
|
|
|
|
fn ipv6_from_segments() {
|
|
|
|
|
let from_u16s = Ipv6Addr::from([0x0011, 0x2233, 0x4455, 0x6677,
|
|
|
|
|
0x8899, 0xaabb, 0xccdd, 0xeeff]);
|
|
|
|
|
let new = Ipv6Addr::new(0x0011, 0x2233, 0x4455, 0x6677,
|
|
|
|
|
0x8899, 0xaabb, 0xccdd, 0xeeff);
|
|
|
|
|
assert_eq!(new, from_u16s);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn ipv6_from_octets() {
|
|
|
|
|
let from_u16s = Ipv6Addr::from([0x0011, 0x2233, 0x4455, 0x6677,
|
|
|
|
|
0x8899, 0xaabb, 0xccdd, 0xeeff]);
|
|
|
|
|
let from_u8s = Ipv6Addr::from([0x00, 0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77,
|
|
|
|
|
0x88, 0x99, 0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff]);
|
|
|
|
|
assert_eq!(from_u16s, from_u8s);
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-09 09:11:16 -08:00
|
|
|
#[test]
|
2016-12-18 23:07:27 -05:00
|
|
|
fn cmp() {
|
|
|
|
|
let v41 = Ipv4Addr::new(100, 64, 3, 3);
|
|
|
|
|
let v42 = Ipv4Addr::new(192, 0, 2, 2);
|
|
|
|
|
let v61 = "2001:db8:f00::1002".parse::<Ipv6Addr>().unwrap();
|
|
|
|
|
let v62 = "2001:db8:f00::2001".parse::<Ipv6Addr>().unwrap();
|
|
|
|
|
assert!(v41 < v42);
|
|
|
|
|
assert!(v61 < v62);
|
|
|
|
|
|
|
|
|
|
assert_eq!(v41, IpAddr::V4(v41));
|
|
|
|
|
assert_eq!(v61, IpAddr::V6(v61));
|
|
|
|
|
assert!(v41 != IpAddr::V4(v42));
|
|
|
|
|
assert!(v61 != IpAddr::V6(v62));
|
|
|
|
|
|
|
|
|
|
assert!(v41 < IpAddr::V4(v42));
|
|
|
|
|
assert!(v61 < IpAddr::V6(v62));
|
|
|
|
|
assert!(IpAddr::V4(v41) < v42);
|
|
|
|
|
assert!(IpAddr::V6(v61) < v62);
|
|
|
|
|
|
|
|
|
|
assert!(v41 < IpAddr::V6(v61));
|
|
|
|
|
assert!(IpAddr::V4(v41) < v61);
|
2015-11-09 09:11:16 -08:00
|
|
|
}
|
2016-09-24 18:22:43 -07:00
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn is_v4() {
|
|
|
|
|
let ip = IpAddr::V4(Ipv4Addr::new(100, 64, 3, 3));
|
|
|
|
|
assert!(ip.is_ipv4());
|
|
|
|
|
assert!(!ip.is_ipv6());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn is_v6() {
|
|
|
|
|
let ip = IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0x1234, 0x5678));
|
|
|
|
|
assert!(!ip.is_ipv4());
|
|
|
|
|
assert!(ip.is_ipv6());
|
|
|
|
|
}
|
2015-04-15 13:48:42 -07:00
|
|
|
}
|