2019-12-22 17:42:04 -05:00
|
|
|
#![unstable(
|
|
|
|
|
feature = "ip",
|
|
|
|
|
reason = "extra functionality has not been \
|
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
|
|
|
scrutinized to the level that it should \
|
2017-09-14 21:30:36 -04:00
|
|
|
be to be stable",
|
2019-12-22 17:42:04 -05:00
|
|
|
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
|
|
|
|
2020-08-27 13:45:01 +00:00
|
|
|
// Tests for this module
|
|
|
|
|
#[cfg(all(test, not(target_os = "emscripten")))]
|
|
|
|
|
mod tests;
|
|
|
|
|
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::cmp::Ordering;
|
2020-05-20 21:10:02 -04:00
|
|
|
use crate::fmt::{self, Write as FmtWrite};
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::hash;
|
2020-05-20 21:10:02 -04:00
|
|
|
use crate::io::Write as IoWrite;
|
2020-08-05 10:29:38 +00:00
|
|
|
use crate::mem::transmute;
|
2019-02-11 04:23:21 +09:00
|
|
|
use crate::sys::net::netc as c;
|
2020-08-19 03:27:24 +00:00
|
|
|
use crate::sys_common::{AsInner, FromInner, IntoInner};
|
2015-02-05 16:50:11 -08:00
|
|
|
|
2017-03-26 14:13:37 +02:00
|
|
|
/// An IP address, either IPv4 or IPv6.
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// This enum can contain either an [`Ipv4Addr`] or an [`Ipv6Addr`], see their
|
|
|
|
|
/// respective documentation for more details.
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
2018-03-24 23:41:34 -04:00
|
|
|
/// The size of an `IpAddr` instance may vary depending on the target operating
|
2018-03-11 17:17:18 -04:00
|
|
|
/// system.
|
2018-03-11 07:41:13 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// # Examples
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
|
|
|
|
/// ```
|
2017-03-26 14:25:31 +02:00
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// let localhost_v4 = IpAddr::V4(Ipv4Addr::new(127, 0, 0, 1));
|
|
|
|
|
/// let localhost_v6 = IpAddr::V6(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// assert_eq!("127.0.0.1".parse(), Ok(localhost_v4));
|
|
|
|
|
/// assert_eq!("::1".parse(), Ok(localhost_v6));
|
2016-09-13 22:07:38 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// assert_eq!(localhost_v4.is_ipv6(), false);
|
|
|
|
|
/// assert_eq!(localhost_v4.is_ipv4(), true);
|
2016-09-13 22:07:38 -04:00
|
|
|
/// ```
|
2016-02-05 16:22:45 -08:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
2020-07-16 21:29:09 +02:00
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Hash, PartialOrd, Ord)]
|
2015-03-25 12:30:49 -07:00
|
|
|
pub enum IpAddr {
|
2017-03-26 14:25:31 +02:00
|
|
|
/// 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),
|
2017-03-26 14:25:31 +02:00
|
|
|
/// 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
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// An IPv4 address.
|
|
|
|
|
///
|
|
|
|
|
/// IPv4 addresses are defined as 32-bit integers in [IETF RFC 791].
|
|
|
|
|
/// They are usually represented as four octets.
|
|
|
|
|
///
|
|
|
|
|
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
|
|
|
|
|
///
|
2018-03-24 23:41:34 -04:00
|
|
|
/// The size of an `Ipv4Addr` struct may vary depending on the target operating
|
2018-03-11 17:17:18 -04:00
|
|
|
/// system.
|
2018-03-11 07:41:13 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// [IETF RFC 791]: https://tools.ietf.org/html/rfc791
|
|
|
|
|
///
|
|
|
|
|
/// # Textual representation
|
|
|
|
|
///
|
|
|
|
|
/// `Ipv4Addr` provides a [`FromStr`] implementation. The four octets are in decimal
|
|
|
|
|
/// notation, divided by `.` (this is called "dot-decimal notation").
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`FromStr`]: crate::str::FromStr
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let localhost = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
/// assert_eq!("127.0.0.1".parse(), Ok(localhost));
|
|
|
|
|
/// assert_eq!(localhost.is_loopback(), true);
|
|
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
#[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
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// An IPv6 address.
|
|
|
|
|
///
|
|
|
|
|
/// IPv6 addresses are defined as 128-bit integers in [IETF RFC 4291].
|
|
|
|
|
/// They are usually represented as eight 16-bit segments.
|
|
|
|
|
///
|
|
|
|
|
/// See [`IpAddr`] for a type encompassing both IPv4 and IPv6 addresses.
|
|
|
|
|
///
|
2018-03-24 23:41:34 -04:00
|
|
|
/// The size of an `Ipv6Addr` struct may vary depending on the target operating
|
2018-03-11 17:17:18 -04:00
|
|
|
/// system.
|
2018-03-11 07:41:13 -04:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
|
|
|
|
|
///
|
|
|
|
|
/// # Textual representation
|
|
|
|
|
///
|
|
|
|
|
/// `Ipv6Addr` provides a [`FromStr`] implementation. There are many ways to represent
|
2017-03-26 18:06:22 +02:00
|
|
|
/// an IPv6 address in text, but in general, each segments is written in hexadecimal
|
2017-03-26 14:25:31 +02:00
|
|
|
/// notation, and segments are separated by `:`. For more information, see
|
|
|
|
|
/// [IETF RFC 5952].
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`FromStr`]: crate::str::FromStr
|
2017-03-26 14:25:31 +02:00
|
|
|
/// [IETF RFC 5952]: https://tools.ietf.org/html/rfc5952
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let localhost = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
|
|
|
|
/// assert_eq!("::1".parse(), Ok(localhost));
|
|
|
|
|
/// assert_eq!(localhost.is_loopback(), true);
|
2017-03-27 16:38:17 +02:00
|
|
|
/// ```
|
2015-02-05 16:50:11 -08:00
|
|
|
#[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,
|
2019-12-22 17:42:04 -05:00
|
|
|
Global,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2016-07-06 16:59:32 -06:00
|
|
|
impl IpAddr {
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] for the special 'unspecified' address.
|
|
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// See the documentation for [`Ipv4Addr::is_unspecified()`] and
|
|
|
|
|
/// [`Ipv6Addr::is_unspecified()`] for more details.
|
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 {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.is_unspecified(),
|
|
|
|
|
IpAddr::V6(ip) => ip.is_unspecified(),
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a loopback address.
|
|
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// See the documentation for [`Ipv4Addr::is_loopback()`] and
|
|
|
|
|
/// [`Ipv6Addr::is_loopback()`] for more details.
|
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 {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.is_loopback(),
|
|
|
|
|
IpAddr::V6(ip) => ip.is_loopback(),
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if the address appears to be globally routable.
|
|
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// See the documentation for [`Ipv4Addr::is_global()`] and
|
|
|
|
|
/// [`Ipv6Addr::is_global()`] for more details.
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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-11-29 14:28:16 -08:00
|
|
|
/// ```
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_global(&self) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.is_global(),
|
|
|
|
|
IpAddr::V6(ip) => ip.is_global(),
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a multicast address.
|
|
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// See the documentation for [`Ipv4Addr::is_multicast()`] and
|
|
|
|
|
/// [`Ipv6Addr::is_multicast()`] for more details.
|
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 {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.is_multicast(),
|
|
|
|
|
IpAddr::V6(ip) => ip.is_multicast(),
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this address is in a range designated for documentation.
|
|
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// See the documentation for [`Ipv4Addr::is_documentation()`] and
|
|
|
|
|
/// [`Ipv6Addr::is_documentation()`] for more details.
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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-11-29 14:28:16 -08:00
|
|
|
/// ```
|
2016-07-06 16:59:32 -06:00
|
|
|
pub fn is_documentation(&self) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.is_documentation(),
|
|
|
|
|
IpAddr::V6(ip) => ip.is_documentation(),
|
2016-07-06 16:59:32 -06:00
|
|
|
}
|
|
|
|
|
}
|
2016-09-24 18:22:43 -07:00
|
|
|
|
2020-08-15 19:17:19 +02:00
|
|
|
/// Returns [`true`] if this address is an [`IPv4` address], and [`false`]
|
|
|
|
|
/// otherwise.
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv4` address]: IpAddr::V4
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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);
|
2016-11-29 14:28:16 -08:00
|
|
|
/// ```
|
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 {
|
2020-01-07 10:35:16 +03:00
|
|
|
matches!(self, IpAddr::V4(_))
|
2016-09-24 18:22:43 -07:00
|
|
|
}
|
|
|
|
|
|
2020-08-15 19:17:19 +02:00
|
|
|
/// Returns [`true`] if this address is an [`IPv6` address], and [`false`]
|
|
|
|
|
/// otherwise.
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv6` address]: IpAddr::V6
|
2016-11-29 14:28:16 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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);
|
2016-11-29 14:28:16 -08:00
|
|
|
/// ```
|
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 {
|
2020-01-07 10:35:16 +03:00
|
|
|
matches!(self, IpAddr::V6(_))
|
2016-09-24 18:22:43 -07:00
|
|
|
}
|
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")]
|
2019-12-18 12:00:59 -05:00
|
|
|
#[rustc_const_stable(feature = "const_ipv4", since = "1.32.0")]
|
2018-07-20 01:14:56 +02:00
|
|
|
pub const fn new(a: u8, b: u8, c: u8, d: u8) -> Ipv4Addr {
|
2020-08-05 02:49:26 +00:00
|
|
|
// `s_addr` is stored as BE on all machine and the array is in BE order.
|
|
|
|
|
// So the native endian conversion method is used so that it's never swapped.
|
|
|
|
|
Ipv4Addr { inner: c::in_addr { s_addr: u32::from_ne_bytes([a, b, c, d]) } }
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2018-07-20 09:09:48 +02:00
|
|
|
/// An IPv4 address with the address pointing to localhost: 127.0.0.1.
|
2017-09-07 14:08:58 -04:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2018-07-20 09:09:48 +02:00
|
|
|
/// let addr = Ipv4Addr::LOCALHOST;
|
2017-09-07 14:08:58 -04:00
|
|
|
/// assert_eq!(addr, Ipv4Addr::new(127, 0, 0, 1));
|
2017-09-07 19:06:57 -04:00
|
|
|
/// ```
|
2018-08-09 01:50:30 -06:00
|
|
|
#[stable(feature = "ip_constructors", since = "1.30.0")]
|
2018-07-20 09:09:48 +02:00
|
|
|
pub const LOCALHOST: Self = Ipv4Addr::new(127, 0, 0, 1);
|
2017-09-07 14:08:58 -04:00
|
|
|
|
2018-07-20 09:09:48 +02:00
|
|
|
/// An IPv4 address representing an unspecified address: 0.0.0.0
|
2017-09-07 14:08:58 -04:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2018-07-20 09:09:48 +02:00
|
|
|
/// let addr = Ipv4Addr::UNSPECIFIED;
|
2017-09-07 14:08:58 -04:00
|
|
|
/// assert_eq!(addr, Ipv4Addr::new(0, 0, 0, 0));
|
2017-09-07 19:06:57 -04:00
|
|
|
/// ```
|
2018-08-09 01:50:30 -06:00
|
|
|
#[stable(feature = "ip_constructors", since = "1.30.0")]
|
2018-07-20 09:09:48 +02:00
|
|
|
pub const UNSPECIFIED: Self = Ipv4Addr::new(0, 0, 0, 0);
|
2017-09-07 14:08:58 -04:00
|
|
|
|
2018-07-29 22:24:19 +02:00
|
|
|
/// An IPv4 address representing the broadcast address: 255.255.255.255
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv4Addr::BROADCAST;
|
|
|
|
|
/// assert_eq!(addr, Ipv4Addr::new(255, 255, 255, 255));
|
|
|
|
|
/// ```
|
2018-08-09 01:50:30 -06:00
|
|
|
#[stable(feature = "ip_constructors", since = "1.30.0")]
|
2018-07-29 22:24:19 +02:00
|
|
|
pub const BROADCAST: Self = Ipv4Addr::new(255, 255, 255, 255);
|
|
|
|
|
|
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]);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
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")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn octets(&self) -> [u8; 4] {
|
2019-02-11 23:00:01 -08:00
|
|
|
// This returns the order we want because s_addr is stored in big-endian.
|
2019-01-18 19:08:31 +01:00
|
|
|
self.inner.s_addr.to_ne_bytes()
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02: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].
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [ip7]: http://man7.org/linux/man-pages/man7/ip.7.html
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # 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")]
|
2019-12-18 12:00:59 -05:00
|
|
|
#[rustc_const_stable(feature = "const_ipv4", since = "1.32.0")]
|
2018-10-23 02:04:42 +02:00
|
|
|
pub const fn is_unspecified(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
self.inner.s_addr == 0
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a loopback address (127.0.0.0/8).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined by [IETF RFC 1122].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_loopback(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
self.octets()[0] == 127
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a private address.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// The private address ranges are defined in [IETF 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
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_private(&self) -> bool {
|
2018-08-10 18:00:50 +02:00
|
|
|
match self.octets() {
|
2018-08-10 23:42:33 +02:00
|
|
|
[10, ..] => true,
|
|
|
|
|
[172, b, ..] if b >= 16 && b <= 31 => true,
|
|
|
|
|
[192, 168, ..] => true,
|
2018-08-10 18:00:50 +02:00
|
|
|
_ => false,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if the address is link-local (169.254.0.0/16).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined by [IETF RFC 3927].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_link_local(&self) -> bool {
|
2018-08-10 18:00:50 +02:00
|
|
|
match self.octets() {
|
2018-08-10 23:42:33 +02:00
|
|
|
[169, 254, ..] => true,
|
2018-08-10 18:00:50 +02:00
|
|
|
_ => false,
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// 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
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// The following return [`false`]:
|
2015-05-02 03:52:29 +02:00
|
|
|
///
|
2020-08-16 14:41:12 +02:00
|
|
|
/// - private addresses (see [`Ipv4Addr::is_private()`])
|
|
|
|
|
/// - the loopback address (see [`Ipv4Addr::is_loopback()`])
|
|
|
|
|
/// - the link-local address (see [`Ipv4Addr::is_link_local()`])
|
|
|
|
|
/// - the broadcast address (see [`Ipv4Addr::is_broadcast()`])
|
|
|
|
|
/// - addresses used for documentation (see [`Ipv4Addr::is_documentation()`])
|
|
|
|
|
/// - the unspecified address (see [`Ipv4Addr::is_unspecified()`]), and the whole
|
2018-11-19 09:40:21 -08:00
|
|
|
/// 0.0.0.0/8 block
|
|
|
|
|
/// - addresses reserved for future protocols (see
|
2020-08-16 14:41:12 +02:00
|
|
|
/// [`Ipv4Addr::is_ietf_protocol_assignment()`], except
|
2018-11-19 09:40:21 -08:00
|
|
|
/// `192.0.0.9/32` and `192.0.0.10/32` which are globally routable
|
2020-08-16 14:41:12 +02:00
|
|
|
/// - addresses reserved for future use (see [`Ipv4Addr::is_reserved()`]
|
2018-11-19 09:40:21 -08:00
|
|
|
/// - addresses reserved for networking devices benchmarking (see
|
2020-08-16 14:41:12 +02:00
|
|
|
/// [`Ipv4Addr::is_benchmarking()`])
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [ipv4-sr]: https://www.iana.org/assignments/iana-ipv4-special-registry/iana-ipv4-special-registry.xhtml
|
2016-11-16 20:40:01 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // private addresses are not global
|
|
|
|
|
/// 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);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // the 0.0.0.0/8 block is not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(0, 1, 2, 3).is_global(), false);
|
|
|
|
|
/// // in particular, the unspecified address is not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(0, 0, 0, 0).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // the loopback address is not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(127, 0, 0, 1).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // link local addresses are not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(169, 254, 45, 1).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // the broadcast address is not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-11-02 18:30:10 +00:00
|
|
|
/// // the address space designated for documentation is not global
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 2, 255).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 51, 100, 65).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(203, 0, 113, 6).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // shared addresses are not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(100, 100, 0, 0).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // addresses reserved for protocol assignment are not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 0).is_global(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 255).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // addresses reserved for future use are not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(250, 10, 20, 30).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // addresses reserved for network devices benchmarking are not global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 18, 0, 0).is_global(), false);
|
2018-11-19 09:40:21 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// // All the other addresses are global
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(1, 1, 1, 1).is_global(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(80, 9, 12, 3).is_global(), true);
|
2016-11-16 20:40:01 +01:00
|
|
|
/// ```
|
2020-09-01 23:55:17 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
|
|
|
|
pub const fn is_global(&self) -> bool {
|
2018-11-19 09:40:21 -08:00
|
|
|
// check if this address is 192.0.0.9 or 192.0.0.10. These addresses are the only two
|
|
|
|
|
// globally routable addresses in the 192.0.0.0/24 range.
|
2020-09-01 23:55:17 +02:00
|
|
|
if u32::from_be_bytes(self.octets()) == 0xc0000009
|
|
|
|
|
|| u32::from_be_bytes(self.octets()) == 0xc000000a
|
|
|
|
|
{
|
2018-11-19 09:40:21 -08:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
!self.is_private()
|
|
|
|
|
&& !self.is_loopback()
|
|
|
|
|
&& !self.is_link_local()
|
|
|
|
|
&& !self.is_broadcast()
|
|
|
|
|
&& !self.is_documentation()
|
|
|
|
|
&& !self.is_shared()
|
|
|
|
|
&& !self.is_ietf_protocol_assignment()
|
|
|
|
|
&& !self.is_reserved()
|
|
|
|
|
&& !self.is_benchmarking()
|
|
|
|
|
// Make sure the address is not in 0.0.0.0/8
|
|
|
|
|
&& self.octets()[0] != 0
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:39:05 -08:00
|
|
|
/// Returns [`true`] if this address is part of the Shared Address Space defined in
|
|
|
|
|
/// [IETF RFC 6598] (`100.64.0.0/10`).
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF RFC 6598]: https://tools.ietf.org/html/rfc6598
|
2018-11-19 09:39:05 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(100, 64, 0, 0).is_shared(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(100, 127, 255, 255).is_shared(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(100, 128, 0, 0).is_shared(), false);
|
2018-11-19 09:39:05 -08:00
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_shared(&self) -> bool {
|
2018-11-19 09:39:05 -08:00
|
|
|
self.octets()[0] == 100 && (self.octets()[1] & 0b1100_0000 == 0b0100_0000)
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:37:58 -08:00
|
|
|
/// Returns [`true`] if this address is part of `192.0.0.0/24`, which is reserved to
|
|
|
|
|
/// IANA for IETF protocol assignments, as documented in [IETF RFC 6890].
|
|
|
|
|
///
|
|
|
|
|
/// Note that parts of this block are in use:
|
|
|
|
|
///
|
|
|
|
|
/// - `192.0.0.8/32` is the "IPv4 dummy address" (see [IETF RFC 7600])
|
|
|
|
|
/// - `192.0.0.9/32` is the "Port Control Protocol Anycast" (see [IETF RFC 7723])
|
|
|
|
|
/// - `192.0.0.10/32` is used for NAT traversal (see [IETF RFC 8155])
|
|
|
|
|
///
|
|
|
|
|
/// [IETF RFC 6890]: https://tools.ietf.org/html/rfc6890
|
|
|
|
|
/// [IETF RFC 7600]: https://tools.ietf.org/html/rfc7600
|
|
|
|
|
/// [IETF RFC 7723]: https://tools.ietf.org/html/rfc7723
|
|
|
|
|
/// [IETF RFC 8155]: https://tools.ietf.org/html/rfc8155
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 0).is_ietf_protocol_assignment(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 8).is_ietf_protocol_assignment(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 9).is_ietf_protocol_assignment(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 0, 255).is_ietf_protocol_assignment(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(192, 0, 1, 0).is_ietf_protocol_assignment(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(191, 255, 255, 255).is_ietf_protocol_assignment(), false);
|
2018-11-19 09:37:58 -08:00
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_ietf_protocol_assignment(&self) -> bool {
|
2018-11-19 09:37:58 -08:00
|
|
|
self.octets()[0] == 192 && self.octets()[1] == 0 && self.octets()[2] == 0
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:37:21 -08:00
|
|
|
/// Returns [`true`] if this address part of the `198.18.0.0/15` range, which is reserved for
|
|
|
|
|
/// network devices benchmarking. This range is defined in [IETF RFC 2544] as `192.18.0.0`
|
|
|
|
|
/// through `198.19.255.255` but [errata 423] corrects it to `198.18.0.0/15`.
|
|
|
|
|
///
|
2019-11-13 15:09:40 +00:00
|
|
|
/// [IETF RFC 2544]: https://tools.ietf.org/html/rfc2544
|
|
|
|
|
/// [errata 423]: https://www.rfc-editor.org/errata/eid423
|
2018-11-19 09:37:21 -08:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 17, 255, 255).is_benchmarking(), false);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 18, 0, 0).is_benchmarking(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 19, 255, 255).is_benchmarking(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(198, 20, 0, 0).is_benchmarking(), false);
|
2018-11-19 09:37:21 -08:00
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_benchmarking(&self) -> bool {
|
2018-11-19 09:37:21 -08:00
|
|
|
self.octets()[0] == 198 && (self.octets()[1] & 0xfe) == 18
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:36:23 -08:00
|
|
|
/// Returns [`true`] if this address is reserved by IANA for future use. [IETF RFC 1112]
|
|
|
|
|
/// defines the block of reserved addresses as `240.0.0.0/4`. This range normally includes the
|
2020-03-06 12:13:55 +01:00
|
|
|
/// broadcast address `255.255.255.255`, but this implementation explicitly excludes it, since
|
2018-11-19 09:36:23 -08:00
|
|
|
/// it is obviously not reserved for future use.
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF RFC 1112]: https://tools.ietf.org/html/rfc1112
|
2018-11-19 09:36:23 -08:00
|
|
|
///
|
2019-04-23 10:40:15 +02:00
|
|
|
/// # Warning
|
|
|
|
|
///
|
|
|
|
|
/// As IANA assigns new addresses, this method will be
|
|
|
|
|
/// updated. This may result in non-reserved addresses being
|
|
|
|
|
/// treated as reserved in code that relies on an outdated version
|
|
|
|
|
/// of this method.
|
|
|
|
|
///
|
2018-11-19 09:36:23 -08:00
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(240, 0, 0, 0).is_reserved(), true);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(255, 255, 255, 254).is_reserved(), true);
|
2018-11-19 09:36:23 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(Ipv4Addr::new(239, 255, 255, 255).is_reserved(), false);
|
|
|
|
|
/// // The broadcast address is not considered as reserved for future use by this implementation
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(255, 255, 255, 255).is_reserved(), false);
|
2018-11-19 09:36:23 -08:00
|
|
|
/// ```
|
2020-09-01 23:55:17 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
|
|
|
|
pub const fn is_reserved(&self) -> bool {
|
2018-11-19 09:36:23 -08:00
|
|
|
self.octets()[0] & 240 == 240 && !self.is_broadcast()
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02: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,
|
2017-03-25 17:27:00 +01:00
|
|
|
/// and is defined by [IETF RFC 5771].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_multicast(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
self.octets()[0] >= 224 && self.octets()[0] <= 239
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a broadcast address (255.255.255.255).
|
2015-04-11 23:32:30 -07:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// A broadcast address has all octets set to 255 as defined in [IETF RFC 919].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 23:55:17 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-09-01 23:55:17 +02:00
|
|
|
pub const fn is_broadcast(&self) -> bool {
|
|
|
|
|
u32::from_be_bytes(self.octets()) == u32::from_be_bytes(Self::BROADCAST.octets())
|
2015-04-11 23:32:30 -07:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this address is in a range designated for documentation.
|
2015-04-11 23:32:30 -07:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This is defined in [IETF 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
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:50:01 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-08-31 05:09:20 +02:00
|
|
|
pub const fn is_documentation(&self) -> bool {
|
2018-08-10 18:00:50 +02:00
|
|
|
match self.octets() {
|
|
|
|
|
[192, 0, 2, _] => true,
|
|
|
|
|
[198, 51, 100, _] => true,
|
|
|
|
|
[203, 0, 113, _] => true,
|
|
|
|
|
_ => false,
|
2015-04-11 23:32:30 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-15 19:17:19 +02: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
|
|
|
///
|
2020-09-02 21:08:09 +08:00
|
|
|
/// This isn't typically the method you want; these addresses don't typically
|
|
|
|
|
/// function on modern systems. Use `to_ipv6_mapped` instead.
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv6` address]: Ipv6Addr
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
2016-11-16 20:40:01 +01:00
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// assert_eq!(
|
|
|
|
|
/// Ipv4Addr::new(192, 0, 2, 255).to_ipv6_compatible(),
|
|
|
|
|
/// Ipv6Addr::new(0, 0, 0, 0, 0, 0, 49152, 767)
|
|
|
|
|
/// );
|
2016-11-16 20:40:01 +01:00
|
|
|
/// ```
|
2020-09-01 23:55:17 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
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")]
|
2020-09-01 23:55:17 +02:00
|
|
|
pub const fn to_ipv6_compatible(&self) -> Ipv6Addr {
|
2020-08-11 16:07:39 +00:00
|
|
|
let [a, b, c, d] = self.octets();
|
2020-09-01 23:55:17 +02:00
|
|
|
Ipv6Addr {
|
|
|
|
|
inner: c::in6_addr { s6_addr: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, a, b, c, d] },
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2020-08-15 19:17:19 +02: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
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv6` address]: Ipv6Addr
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
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));
|
|
|
|
|
/// ```
|
2020-09-01 23:55:17 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv4", issue = "76205")]
|
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")]
|
2020-09-01 23:55:17 +02:00
|
|
|
pub const fn to_ipv6_mapped(&self) -> Ipv6Addr {
|
2020-08-11 16:07:39 +00:00
|
|
|
let [a, b, c, d] = self.octets();
|
2020-09-01 23:55:17 +02:00
|
|
|
Ipv6Addr {
|
|
|
|
|
inner: c::in6_addr { s6_addr: [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xFF, 0xFF, a, b, c, d] },
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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 {
|
2019-03-01 09:34:11 +01:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(ip) => ip.fmt(fmt),
|
|
|
|
|
IpAddr::V6(ip) => ip.fmt(fmt),
|
2015-03-25 12:30:49 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-16 21:29:09 +02:00
|
|
|
#[stable(feature = "ip_addr", since = "1.7.0")]
|
|
|
|
|
impl fmt::Debug for IpAddr {
|
|
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
fmt::Display::fmt(self, 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 {
|
2020-01-29 15:09:04 +01:00
|
|
|
/// Copies this address to a new `IpAddr::V4`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr};
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv4Addr::new(127, 0, 0, 1);
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// IpAddr::V4(addr),
|
|
|
|
|
/// IpAddr::from(addr)
|
|
|
|
|
/// )
|
|
|
|
|
/// ```
|
2016-12-12 15:34:09 -05:00
|
|
|
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 {
|
2020-01-29 15:09:04 +01:00
|
|
|
/// Copies this address to a new `IpAddr::V6`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff);
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// IpAddr::V6(addr),
|
|
|
|
|
/// IpAddr::from(addr)
|
|
|
|
|
/// );
|
|
|
|
|
/// ```
|
2016-12-12 15:34:09 -05:00
|
|
|
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 {
|
2019-03-01 09:34:11 +01:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-02-05 16:50:11 -08:00
|
|
|
let octets = self.octets();
|
2020-05-20 16:49:31 -04:00
|
|
|
// Fast Path: if there's no alignment stuff, write directly to the buffer
|
|
|
|
|
if fmt.precision().is_none() && fmt.width().is_none() {
|
|
|
|
|
write!(fmt, "{}.{}.{}.{}", octets[0], octets[1], octets[2], octets[3])
|
|
|
|
|
} else {
|
|
|
|
|
const IPV4_BUF_LEN: usize = 15; // Long enough for the longest possible IPv4 address
|
|
|
|
|
let mut buf = [0u8; IPV4_BUF_LEN];
|
|
|
|
|
let mut buf_slice = &mut buf[..];
|
|
|
|
|
|
|
|
|
|
// Note: The call to write should never fail, hence the unwrap
|
|
|
|
|
write!(buf_slice, "{}.{}.{}.{}", octets[0], octets[1], octets[2], octets[3]).unwrap();
|
|
|
|
|
let len = IPV4_BUF_LEN - buf_slice.len();
|
|
|
|
|
|
|
|
|
|
// This unsafe is OK because we know what is being written to the buffer
|
|
|
|
|
let buf = unsafe { crate::str::from_utf8_unchecked(&buf[..len]) };
|
|
|
|
|
fmt.pad(buf)
|
|
|
|
|
}
|
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::Debug for Ipv4Addr {
|
2019-03-01 09:34:11 +01:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-02-05 16:50:11 -08:00
|
|
|
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 {
|
2019-12-22 17:42:04 -05:00
|
|
|
fn clone(&self) -> Ipv4Addr {
|
|
|
|
|
*self
|
|
|
|
|
}
|
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 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
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialEq<Ipv4Addr> for IpAddr {
|
|
|
|
|
fn eq(&self, other: &Ipv4Addr) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(v4) => v4 == other,
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V6(_) => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialEq<IpAddr> for Ipv4Addr {
|
|
|
|
|
fn eq(&self, other: &IpAddr) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match other {
|
|
|
|
|
IpAddr::V4(v4) => self == v4,
|
2016-12-18 23:07:27 -05:00
|
|
|
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) {
|
2020-08-19 03:27:24 +00:00
|
|
|
// NOTE:
|
|
|
|
|
// * hash in big endian order
|
|
|
|
|
// * in netbsd, `in_addr` has `repr(packed)`, we need to
|
|
|
|
|
// copy `s_addr` to avoid unsafe borrowing
|
2019-12-22 17:42:04 -05:00
|
|
|
{ self.inner.s_addr }.hash(s)
|
2015-02-17 20:48:07 -08:00
|
|
|
}
|
|
|
|
|
}
|
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))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialOrd<Ipv4Addr> for IpAddr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv4Addr) -> Option<Ordering> {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
|
|
|
|
IpAddr::V4(v4) => v4.partial_cmp(other),
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V6(_) => Some(Ordering::Greater),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialOrd<IpAddr> for Ipv4Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> {
|
2018-08-10 20:48:15 +02:00
|
|
|
match other {
|
|
|
|
|
IpAddr::V4(v4) => self.partial_cmp(v4),
|
2016-12-18 23:07:27 -05:00
|
|
|
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 {
|
2020-08-19 03:27:24 +00:00
|
|
|
// Compare as native endian
|
2018-07-20 01:14:56 +02:00
|
|
|
u32::from_be(self.inner.s_addr).cmp(&u32::from_be(other.inner.s_addr))
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-19 03:27:24 +00:00
|
|
|
impl IntoInner<c::in_addr> for Ipv4Addr {
|
|
|
|
|
fn into_inner(self) -> c::in_addr {
|
|
|
|
|
self.inner
|
2019-12-22 17:42:04 -05:00
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2015-04-20 20:37:58 -07:00
|
|
|
#[stable(feature = "ip_u32", since = "1.1.0")]
|
|
|
|
|
impl From<Ipv4Addr> for u32 {
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Converts an `Ipv4Addr` into a host byte order `u32`.
|
2018-03-26 17:43:49 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2020-08-05 05:31:17 +00:00
|
|
|
/// let addr = Ipv4Addr::new(0xca, 0xfe, 0xba, 0xbe);
|
|
|
|
|
/// assert_eq!(0xcafebabe, u32::from(addr));
|
2018-03-26 17:43:49 +02:00
|
|
|
/// ```
|
2015-04-20 20:37:58 -07:00
|
|
|
fn from(ip: Ipv4Addr) -> u32 {
|
|
|
|
|
let ip = ip.octets();
|
2019-02-11 23:00:01 -08:00
|
|
|
u32::from_be_bytes(ip)
|
2015-04-20 20:37:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[stable(feature = "ip_u32", since = "1.1.0")]
|
|
|
|
|
impl From<u32> for Ipv4Addr {
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Converts a host byte order `u32` into an `Ipv4Addr`.
|
2018-03-26 17:43:49 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
2020-08-05 05:31:17 +00:00
|
|
|
/// let addr = Ipv4Addr::from(0xcafebabe);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(0xca, 0xfe, 0xba, 0xbe), addr);
|
2018-03-26 17:43:49 +02:00
|
|
|
/// ```
|
2015-04-20 20:37:58 -07:00
|
|
|
fn from(ip: u32) -> Ipv4Addr {
|
2019-02-11 23:00:01 -08:00
|
|
|
Ipv4Addr::from(ip.to_be_bytes())
|
2015-04-20 20:37:58 -07:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-04 14:12:18 -08:00
|
|
|
#[stable(feature = "from_slice_v4", since = "1.9.0")]
|
|
|
|
|
impl From<[u8; 4]> for Ipv4Addr {
|
2020-01-29 15:09:04 +01:00
|
|
|
/// Creates an `Ipv4Addr` from a four element byte array.
|
|
|
|
|
///
|
2018-03-26 17:43:49 +02:00
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv4Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv4Addr::from([13u8, 12u8, 11u8, 10u8]);
|
|
|
|
|
/// assert_eq!(Ipv4Addr::new(13, 12, 11, 10), addr);
|
|
|
|
|
/// ```
|
2016-03-04 14:12:18 -08:00
|
|
|
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 {
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Creates an `IpAddr::V4` from a four element byte array.
|
2018-03-26 17:43:49 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv4Addr};
|
|
|
|
|
///
|
|
|
|
|
/// let addr = IpAddr::from([13u8, 12u8, 11u8, 10u8]);
|
|
|
|
|
/// assert_eq!(IpAddr::V4(Ipv4Addr::new(13, 12, 11, 10)), addr);
|
|
|
|
|
/// ```
|
2017-01-28 12:53:17 -08:00
|
|
|
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
|
|
|
///
|
2018-11-12 13:05:20 -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")]
|
2019-12-18 12:00:59 -05:00
|
|
|
#[rustc_const_stable(feature = "const_ipv6", since = "1.32.0")]
|
2020-08-05 10:29:38 +00:00
|
|
|
#[allow_internal_unstable(const_fn_transmute)]
|
2019-12-22 17:42:04 -05:00
|
|
|
pub const fn new(a: u16, b: u16, c: u16, d: u16, e: u16, f: u16, g: u16, h: u16) -> Ipv6Addr {
|
2020-08-05 10:29:38 +00:00
|
|
|
let addr16 = [
|
|
|
|
|
a.to_be(),
|
|
|
|
|
b.to_be(),
|
|
|
|
|
c.to_be(),
|
|
|
|
|
d.to_be(),
|
|
|
|
|
e.to_be(),
|
|
|
|
|
f.to_be(),
|
|
|
|
|
g.to_be(),
|
|
|
|
|
h.to_be(),
|
|
|
|
|
];
|
2018-07-20 01:14:56 +02:00
|
|
|
Ipv6Addr {
|
|
|
|
|
inner: c::in6_addr {
|
2020-08-05 10:29:38 +00:00
|
|
|
// All elements in `addr16` are big endian.
|
|
|
|
|
// SAFETY: `[u16; 8]` is always safe to transmute to `[u8; 16]`.
|
|
|
|
|
s6_addr: unsafe { transmute::<_, [u8; 16]>(addr16) },
|
2019-12-22 17:42:04 -05:00
|
|
|
},
|
2018-07-20 01:14:56 +02:00
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2018-07-20 09:09:48 +02:00
|
|
|
/// An IPv6 address representing localhost: `::1`.
|
2017-09-07 14:08:58 -04:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2018-07-20 09:09:48 +02:00
|
|
|
/// let addr = Ipv6Addr::LOCALHOST;
|
2017-09-07 14:08:58 -04:00
|
|
|
/// assert_eq!(addr, Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1));
|
2017-09-07 19:06:57 -04:00
|
|
|
/// ```
|
2018-08-09 01:50:30 -06:00
|
|
|
#[stable(feature = "ip_constructors", since = "1.30.0")]
|
2018-07-20 09:09:48 +02:00
|
|
|
pub const LOCALHOST: Self = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1);
|
2017-09-07 14:08:58 -04:00
|
|
|
|
2018-07-20 09:09:48 +02:00
|
|
|
/// An IPv6 address representing the unspecified address: `::`
|
2017-09-07 14:08:58 -04:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2018-07-20 09:09:48 +02:00
|
|
|
/// let addr = Ipv6Addr::UNSPECIFIED;
|
2017-09-07 14:08:58 -04:00
|
|
|
/// assert_eq!(addr, Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0));
|
2017-09-07 19:06:57 -04:00
|
|
|
/// ```
|
2018-08-09 01:50:30 -06:00
|
|
|
#[stable(feature = "ip_constructors", since = "1.30.0")]
|
2018-07-20 09:09:48 +02:00
|
|
|
pub const UNSPECIFIED: Self = Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 0);
|
2017-09-07 14:08:58 -04: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]);
|
|
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
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")]
|
2020-09-01 19:00:20 +02:00
|
|
|
pub const fn segments(&self) -> [u16; 8] {
|
2020-08-05 10:29:38 +00:00
|
|
|
// All elements in `s6_addr` must be big endian.
|
|
|
|
|
// SAFETY: `[u8; 16]` is always safe to transmute to `[u16; 8]`.
|
|
|
|
|
let [a, b, c, d, e, f, g, h] = unsafe { transmute::<_, [u16; 8]>(self.inner.s6_addr) };
|
|
|
|
|
// We want native endian u16
|
2015-11-02 16:23:22 -08:00
|
|
|
[
|
2020-08-05 10:29:38 +00:00
|
|
|
u16::from_be(a),
|
|
|
|
|
u16::from_be(b),
|
|
|
|
|
u16::from_be(c),
|
|
|
|
|
u16::from_be(d),
|
|
|
|
|
u16::from_be(e),
|
|
|
|
|
u16::from_be(f),
|
|
|
|
|
u16::from_be(g),
|
|
|
|
|
u16::from_be(h),
|
2015-11-02 16:23:22 -08:00
|
|
|
]
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] for the special 'unspecified' address (::).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined in [IETF RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-09-01 19:00:20 +02:00
|
|
|
pub const fn is_unspecified(&self) -> bool {
|
2020-09-01 21:05:26 +02:00
|
|
|
u128::from_be_bytes(self.octets()) == u128::from_be_bytes(Ipv6Addr::UNSPECIFIED.octets())
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a loopback address (::1).
|
2016-01-15 10:07:52 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined in [IETF RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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);
|
|
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-09-01 19:00:20 +02:00
|
|
|
pub const fn is_loopback(&self) -> bool {
|
2020-09-01 21:05:26 +02:00
|
|
|
u128::from_be_bytes(self.octets()) == u128::from_be_bytes(Ipv6Addr::LOCALHOST.octets())
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if the address appears to be globally routable.
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2017-03-26 14:25:31 +02:00
|
|
|
/// The following return [`false`]:
|
2015-05-02 03:52:29 +02:00
|
|
|
///
|
|
|
|
|
/// - the loopback address
|
2019-11-09 12:27:09 +00:00
|
|
|
/// - link-local and unique local unicast addresses
|
2015-05-02 03:52:29 +02:00
|
|
|
/// - interface-, link-, realm-, admin- and site-local multicast addresses
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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);
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_global(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
match self.multicast_scope() {
|
|
|
|
|
Some(Ipv6MulticastScope::Global) => true,
|
|
|
|
|
None => self.is_unicast_global(),
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => false,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:34:04 -08:00
|
|
|
/// Returns [`true`] if this is a unique local address (`fc00::/7`).
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined in [IETF RFC 4193].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// [IETF RFC 4193]: https://tools.ietf.org/html/rfc4193
|
2020-08-15 19:17:19 +02:00
|
|
|
///
|
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;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_unique_local(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
(self.segments()[0] & 0xfe00) == 0xfc00
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:33:02 -08:00
|
|
|
/// Returns [`true`] if the address is a unicast link-local address (`fe80::/64`).
|
2016-06-13 23:49:04 +01:00
|
|
|
///
|
2018-11-19 09:33:02 -08:00
|
|
|
/// A common mis-conception is to think that "unicast link-local addresses start with
|
|
|
|
|
/// `fe80::`", but the [IETF RFC 4291] actually defines a stricter format for these addresses:
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2018-11-19 09:33:02 -08:00
|
|
|
/// ```no_rust
|
|
|
|
|
/// | 10 |
|
|
|
|
|
/// | bits | 54 bits | 64 bits |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// |1111111010| 0 | interface ID |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// This method validates the format defined in the RFC and won't recognize the following
|
|
|
|
|
/// addresses such as `fe80:0:0:1::` or `fe81::` as unicast link-local addresses for example.
|
2020-08-16 14:41:12 +02:00
|
|
|
/// If you need a less strict validation use [`Ipv6Addr::is_unicast_link_local()`] instead.
|
2020-08-15 19:17:19 +02:00
|
|
|
///
|
2018-11-19 09:33:02 -08:00
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local_strict());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 0, 0xffff, 0xffff, 0xffff, 0xffff);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local_strict());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 1, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(!ip.is_unicast_link_local_strict());
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe81, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(!ip.is_unicast_link_local_strict());
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
2018-11-19 09:33:02 -08:00
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// # See also
|
|
|
|
|
///
|
|
|
|
|
/// - [IETF RFC 4291 section 2.5.6]
|
2020-07-26 22:00:29 +02:00
|
|
|
/// - [RFC 4291 errata 4406] (which has been rejected but provides useful
|
|
|
|
|
/// insight)
|
2020-08-16 14:41:12 +02:00
|
|
|
/// - [`Ipv6Addr::is_unicast_link_local()`]
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2018-11-19 16:31:14 -08:00
|
|
|
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2018-11-19 09:33:02 -08:00
|
|
|
/// [IETF RFC 4291 section 2.5.6]: https://tools.ietf.org/html/rfc4291#section-2.5.6
|
2020-07-26 22:00:29 +02:00
|
|
|
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_unicast_link_local_strict(&self) -> bool {
|
2018-11-19 09:33:02 -08:00
|
|
|
(self.segments()[0] & 0xffff) == 0xfe80
|
|
|
|
|
&& (self.segments()[1] & 0xffff) == 0
|
|
|
|
|
&& (self.segments()[2] & 0xffff) == 0
|
|
|
|
|
&& (self.segments()[3] & 0xffff) == 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Returns [`true`] if the address is a unicast link-local address (`fe80::/10`).
|
|
|
|
|
///
|
|
|
|
|
/// This method returns [`true`] for addresses in the range reserved by [RFC 4291 section 2.4],
|
|
|
|
|
/// i.e. addresses with the following format:
|
|
|
|
|
///
|
|
|
|
|
/// ```no_rust
|
|
|
|
|
/// | 10 |
|
|
|
|
|
/// | bits | 54 bits | 64 bits |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// |1111111010| arbitratry value | interface ID |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// As a result, this method consider addresses such as `fe80:0:0:1::` or `fe81::` to be
|
2020-08-16 14:41:12 +02:00
|
|
|
/// unicast link-local addresses, whereas [`Ipv6Addr::is_unicast_link_local_strict()`] does not.
|
2020-08-15 19:17:19 +02:00
|
|
|
/// If you need a strict validation fully compliant with the RFC, use
|
2020-08-16 14:41:12 +02:00
|
|
|
/// [`Ipv6Addr::is_unicast_link_local_strict()`] instead.
|
2020-08-15 19:17:19 +02:00
|
|
|
///
|
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;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 0, 0xffff, 0xffff, 0xffff, 0xffff);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe80, 0, 0, 1, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
|
|
|
|
/// assert!(!ip.is_unicast_link_local_strict());
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// let ip = Ipv6Addr::new(0xfe81, 0, 0, 0, 0, 0, 0, 0);
|
|
|
|
|
/// assert!(ip.is_unicast_link_local());
|
|
|
|
|
/// assert!(!ip.is_unicast_link_local_strict());
|
2016-11-18 17:19:39 +01:00
|
|
|
/// ```
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
|
|
|
|
/// # See also
|
|
|
|
|
///
|
|
|
|
|
/// - [IETF RFC 4291 section 2.4]
|
2020-07-26 22:00:29 +02:00
|
|
|
/// - [RFC 4291 errata 4406] (which has been rejected but provides useful
|
|
|
|
|
/// insight)
|
2018-11-19 09:33:02 -08:00
|
|
|
///
|
|
|
|
|
/// [IETF RFC 4291 section 2.4]: https://tools.ietf.org/html/rfc4291#section-2.4
|
2020-07-26 22:00:29 +02:00
|
|
|
/// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_unicast_link_local(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
(self.segments()[0] & 0xffc0) == 0xfe80
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-19 09:32:03 -08:00
|
|
|
/// Returns [`true`] if this is a deprecated unicast site-local address (fec0::/10). The
|
|
|
|
|
/// unicast site-local address format is defined in [RFC 4291 section 2.5.7] as:
|
|
|
|
|
///
|
|
|
|
|
/// ```no_rust
|
|
|
|
|
/// | 10 |
|
|
|
|
|
/// | bits | 54 bits | 64 bits |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// |1111111011| subnet ID | interface ID |
|
|
|
|
|
/// +----------+-------------------------+----------------------------+
|
|
|
|
|
/// ```
|
2016-11-18 17:19:39 +01:00
|
|
|
///
|
2018-11-19 09:32:03 -08:00
|
|
|
/// [RFC 4291 section 2.5.7]: https://tools.ietf.org/html/rfc4291#section-2.5.7
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
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;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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
|
|
|
/// ```
|
2019-04-23 10:38:26 +02:00
|
|
|
///
|
|
|
|
|
/// # Warning
|
|
|
|
|
///
|
|
|
|
|
/// As per [RFC 3879], the whole `FEC0::/10` prefix is
|
|
|
|
|
/// deprecated. New software must not support site-local
|
|
|
|
|
/// addresses.
|
|
|
|
|
///
|
|
|
|
|
/// [RFC 3879]: https://tools.ietf.org/html/rfc3879
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_unicast_site_local(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
(self.segments()[0] & 0xffc0) == 0xfec0
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is an address reserved for documentation
|
2016-06-13 23:49:04 +01:00
|
|
|
/// (2001:db8::/32).
|
|
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined in [IETF RFC 3849].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF 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;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_documentation(&self) -> bool {
|
2016-03-11 18:38:59 -08:00
|
|
|
(self.segments()[0] == 0x2001) && (self.segments()[1] == 0xdb8)
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02: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
|
|
|
|
|
/// - 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
|
|
|
///
|
2018-11-19 09:30:26 -08:00
|
|
|
/// This method returns [`true`] for site-local addresses as per [RFC 4291 section 2.5.7]
|
|
|
|
|
///
|
|
|
|
|
/// ```no_rust
|
|
|
|
|
/// The special behavior of [the site-local unicast] prefix defined in [RFC3513] must no longer
|
|
|
|
|
/// be supported in new implementations (i.e., new implementations must treat this prefix as
|
|
|
|
|
/// Global Unicast).
|
|
|
|
|
/// ```
|
|
|
|
|
///
|
|
|
|
|
/// [RFC 4291 section 2.5.7]: https://tools.ietf.org/html/rfc4291#section-2.5.7
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
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;
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn is_unicast_global(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
!self.is_multicast()
|
2018-11-19 09:30:26 -08:00
|
|
|
&& !self.is_loopback()
|
|
|
|
|
&& !self.is_unicast_link_local()
|
|
|
|
|
&& !self.is_unique_local()
|
|
|
|
|
&& !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};
|
|
|
|
|
///
|
2019-10-01 11:55:46 +00:00
|
|
|
/// 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
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn multicast_scope(&self) -> Option<Ipv6MulticastScope> {
|
2015-02-05 16:50:11 -08:00
|
|
|
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),
|
2019-12-22 17:42:04 -05:00
|
|
|
_ => None,
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
None
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-26 14:25:31 +02:00
|
|
|
/// Returns [`true`] if this is a multicast address (ff00::/8).
|
2015-02-05 16:50:11 -08:00
|
|
|
///
|
2017-03-25 17:27:00 +01:00
|
|
|
/// This property is defined by [IETF RFC 4291].
|
2016-11-16 19:56:01 +01:00
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
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);
|
|
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
2016-01-15 10:07:52 -08:00
|
|
|
#[stable(since = "1.7.0", feature = "ip_17")]
|
2020-09-01 19:00:20 +02:00
|
|
|
pub const fn is_multicast(&self) -> bool {
|
2015-02-05 16:50:11 -08:00
|
|
|
(self.segments()[0] & 0xff00) == 0xff00
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-15 19:17:19 +02:00
|
|
|
/// Converts this address to an [`IPv4` address] if it's an "IPv4-mapped IPv6 address"
|
2020-08-10 20:20:20 +08:00
|
|
|
/// defined in [IETF RFC 4291 section 2.5.5.2], otherwise returns [`None`].
|
|
|
|
|
///
|
|
|
|
|
/// `::ffff:a.b.c.d` becomes `a.b.c.d`.
|
|
|
|
|
/// All addresses *not* starting with `::ffff` will return `None`.
|
|
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv4` address]: Ipv4Addr
|
2020-08-10 20:20:20 +08:00
|
|
|
/// [IETF RFC 4291 section 2.5.5.2]: https://tools.ietf.org/html/rfc4291#section-2.5.5.2
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// #![feature(ip)]
|
|
|
|
|
///
|
|
|
|
|
/// use std::net::{Ipv4Addr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0xff00, 0, 0, 0, 0, 0, 0, 0).to_ipv4_mapped(), None);
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0xffff, 0xc00a, 0x2ff).to_ipv4_mapped(),
|
|
|
|
|
/// Some(Ipv4Addr::new(192, 10, 2, 255)));
|
|
|
|
|
/// assert_eq!(Ipv6Addr::new(0, 0, 0, 0, 0, 0, 0, 1).to_ipv4_mapped(), None);
|
|
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
|
|
|
|
pub const fn to_ipv4_mapped(&self) -> Option<Ipv4Addr> {
|
2020-08-10 20:20:20 +08:00
|
|
|
match self.octets() {
|
|
|
|
|
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0xff, 0xff, a, b, c, d] => {
|
|
|
|
|
Some(Ipv4Addr::new(a, b, c, d))
|
|
|
|
|
}
|
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-15 19:17:19 +02: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
|
|
|
///
|
2020-08-15 19:17:19 +02:00
|
|
|
/// [`IPv4` address]: Ipv4Addr
|
2017-03-26 14:25:31 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
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
|
|
|
/// ```
|
2020-09-01 19:00:20 +02:00
|
|
|
#[rustc_const_unstable(feature = "const_ipv6", issue = "76205")]
|
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")]
|
2020-09-01 19:00:20 +02:00
|
|
|
pub const fn to_ipv4(&self) -> Option<Ipv4Addr> {
|
2020-08-11 16:07:39 +00:00
|
|
|
if let [0, 0, 0, 0, 0, 0 | 0xffff, ab, cd] = self.segments() {
|
|
|
|
|
let [a, b] = ab.to_be_bytes();
|
|
|
|
|
let [c, d] = cd.to_be_bytes();
|
|
|
|
|
Some(Ipv4Addr::new(a, b, c, d))
|
|
|
|
|
} else {
|
|
|
|
|
None
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
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")]
|
2019-12-18 12:00:59 -05:00
|
|
|
#[rustc_const_stable(feature = "const_ipv6", since = "1.32.0")]
|
2018-10-23 02:04:42 +02:00
|
|
|
pub const fn octets(&self) -> [u8; 16] {
|
2016-03-18 13:53:40 +01:00
|
|
|
self.inner.s6_addr
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
/// Write an Ipv6Addr, conforming to the canonical style described by
|
|
|
|
|
/// [RFC 5952](https://tools.ietf.org/html/rfc5952).
|
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 {
|
2020-05-20 21:10:02 -04:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
|
|
|
|
|
// If there are no alignment requirements, write out the IP address to
|
|
|
|
|
// f. Otherwise, write it to a local buffer, then use f.pad.
|
|
|
|
|
if f.precision().is_none() && f.width().is_none() {
|
|
|
|
|
let segments = self.segments();
|
|
|
|
|
|
|
|
|
|
// Special case for :: and ::1; otherwise they get written with the
|
|
|
|
|
// IPv4 formatter
|
|
|
|
|
if self.is_unspecified() {
|
|
|
|
|
f.write_str("::")
|
|
|
|
|
} else if self.is_loopback() {
|
|
|
|
|
f.write_str("::1")
|
|
|
|
|
} else if let Some(ipv4) = self.to_ipv4() {
|
|
|
|
|
match segments[5] {
|
|
|
|
|
// IPv4 Compatible address
|
|
|
|
|
0 => write!(f, "::{}", ipv4),
|
|
|
|
|
// IPv4 Mapped address
|
|
|
|
|
0xffff => write!(f, "::ffff:{}", ipv4),
|
|
|
|
|
_ => unreachable!(),
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
#[derive(Copy, Clone, Default)]
|
|
|
|
|
struct Span {
|
|
|
|
|
start: usize,
|
|
|
|
|
len: usize,
|
|
|
|
|
}
|
2019-12-04 10:36:43 -08:00
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
// Find the inner 0 span
|
|
|
|
|
let zeroes = {
|
|
|
|
|
let mut longest = Span::default();
|
|
|
|
|
let mut current = Span::default();
|
|
|
|
|
|
|
|
|
|
for (i, &segment) in segments.iter().enumerate() {
|
|
|
|
|
if segment == 0 {
|
|
|
|
|
if current.len == 0 {
|
|
|
|
|
current.start = i;
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
current.len += 1;
|
2015-02-05 16:50:11 -08:00
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
if current.len > longest.len {
|
|
|
|
|
longest = current;
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
} else {
|
2020-05-20 21:10:02 -04:00
|
|
|
current = Span::default();
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
longest
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/// Write a colon-separated part of the address
|
|
|
|
|
#[inline]
|
|
|
|
|
fn fmt_subslice(f: &mut fmt::Formatter<'_>, chunk: &[u16]) -> fmt::Result {
|
|
|
|
|
if let Some(first) = chunk.first() {
|
|
|
|
|
fmt::LowerHex::fmt(first, f)?;
|
|
|
|
|
for segment in &chunk[1..] {
|
|
|
|
|
f.write_char(':')?;
|
|
|
|
|
fmt::LowerHex::fmt(segment, f)?;
|
2015-12-05 00:44:16 +01:00
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
2020-05-20 21:10:02 -04:00
|
|
|
Ok(())
|
|
|
|
|
}
|
2015-02-05 16:50:11 -08:00
|
|
|
|
2020-05-20 21:10:02 -04:00
|
|
|
if zeroes.len > 1 {
|
|
|
|
|
fmt_subslice(f, &segments[..zeroes.start])?;
|
|
|
|
|
f.write_str("::")?;
|
|
|
|
|
fmt_subslice(f, &segments[zeroes.start + zeroes.len..])
|
2015-02-05 16:50:11 -08:00
|
|
|
} else {
|
2020-05-20 21:10:02 -04:00
|
|
|
fmt_subslice(f, &segments)
|
2015-02-05 16:50:11 -08:00
|
|
|
}
|
|
|
|
|
}
|
2020-05-20 21:10:02 -04:00
|
|
|
} else {
|
|
|
|
|
// Slow path: write the address to a local buffer, the use f.pad.
|
|
|
|
|
// Defined recursively by using the fast path to write to the
|
|
|
|
|
// buffer.
|
|
|
|
|
|
|
|
|
|
// This is the largest possible size of an IPv6 address
|
|
|
|
|
const IPV6_BUF_LEN: usize = (4 * 8) + 7;
|
|
|
|
|
let mut buf = [0u8; IPV6_BUF_LEN];
|
|
|
|
|
let mut buf_slice = &mut buf[..];
|
|
|
|
|
|
|
|
|
|
// Note: This call to write should never fail, so unwrap is okay.
|
|
|
|
|
write!(buf_slice, "{}", self).unwrap();
|
|
|
|
|
let len = IPV6_BUF_LEN - buf_slice.len();
|
|
|
|
|
|
|
|
|
|
// This is safe because we know exactly what can be in this buffer
|
|
|
|
|
let buf = unsafe { crate::str::from_utf8_unchecked(&buf[..len]) };
|
|
|
|
|
f.pad(buf)
|
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::Debug for Ipv6Addr {
|
2019-03-01 09:34:11 +01:00
|
|
|
fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
|
2015-02-05 16:50:11 -08:00
|
|
|
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 {
|
2019-12-22 17:42:04 -05:00
|
|
|
fn clone(&self) -> Ipv6Addr {
|
|
|
|
|
*self
|
|
|
|
|
}
|
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 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
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialEq<IpAddr> for Ipv6Addr {
|
|
|
|
|
fn eq(&self, other: &IpAddr) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match other {
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V4(_) => false,
|
2018-08-10 20:48:15 +02:00
|
|
|
IpAddr::V6(v6) => self == v6,
|
2016-12-18 23:07:27 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialEq<Ipv6Addr> for IpAddr {
|
|
|
|
|
fn eq(&self, other: &Ipv6Addr) -> bool {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V4(_) => false,
|
2018-08-10 20:48:15 +02:00
|
|
|
IpAddr::V6(v6) => v6 == other,
|
2016-12-18 23:07:27 -05: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 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))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialOrd<Ipv6Addr> for IpAddr {
|
|
|
|
|
fn partial_cmp(&self, other: &Ipv6Addr) -> Option<Ordering> {
|
2018-08-10 20:48:15 +02:00
|
|
|
match self {
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V4(_) => Some(Ordering::Less),
|
2018-08-10 20:48:15 +02:00
|
|
|
IpAddr::V6(v6) => v6.partial_cmp(other),
|
2016-12-18 23:07:27 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ip_cmp", since = "1.16.0")]
|
2016-12-18 23:07:27 -05:00
|
|
|
impl PartialOrd<IpAddr> for Ipv6Addr {
|
|
|
|
|
fn partial_cmp(&self, other: &IpAddr) -> Option<Ordering> {
|
2018-08-10 20:48:15 +02:00
|
|
|
match other {
|
2016-12-18 23:07:27 -05:00
|
|
|
IpAddr::V4(_) => Some(Ordering::Greater),
|
2018-08-10 20:48:15 +02:00
|
|
|
IpAddr::V6(v6) => self.partial_cmp(v6),
|
2016-12-18 23:07:27 -05: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 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 {
|
2019-12-22 17:42:04 -05:00
|
|
|
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
|
|
|
|
2018-03-17 11:55:44 -05:00
|
|
|
#[stable(feature = "i128", since = "1.26.0")]
|
2017-01-26 16:10:48 -05:00
|
|
|
impl From<Ipv6Addr> for u128 {
|
2019-02-11 23:00:01 -08:00
|
|
|
/// Convert an `Ipv6Addr` into a host byte order `u128`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::new(
|
|
|
|
|
/// 0x1020, 0x3040, 0x5060, 0x7080,
|
|
|
|
|
/// 0x90A0, 0xB0C0, 0xD0E0, 0xF00D,
|
|
|
|
|
/// );
|
|
|
|
|
/// assert_eq!(0x102030405060708090A0B0C0D0E0F00D_u128, u128::from(addr));
|
|
|
|
|
/// ```
|
2017-01-26 16:10:48 -05:00
|
|
|
fn from(ip: Ipv6Addr) -> u128 {
|
2019-02-11 23:00:01 -08:00
|
|
|
let ip = ip.octets();
|
|
|
|
|
u128::from_be_bytes(ip)
|
2017-01-26 16:10:48 -05:00
|
|
|
}
|
|
|
|
|
}
|
2018-03-17 11:55:44 -05:00
|
|
|
#[stable(feature = "i128", since = "1.26.0")]
|
2017-01-26 16:10:48 -05:00
|
|
|
impl From<u128> for Ipv6Addr {
|
2019-02-11 23:00:01 -08:00
|
|
|
/// Convert a host byte order `u128` into an `Ipv6Addr`.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::from(0x102030405060708090A0B0C0D0E0F00D_u128);
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// Ipv6Addr::new(
|
|
|
|
|
/// 0x1020, 0x3040, 0x5060, 0x7080,
|
|
|
|
|
/// 0x90A0, 0xB0C0, 0xD0E0, 0xF00D,
|
|
|
|
|
/// ),
|
|
|
|
|
/// addr);
|
|
|
|
|
/// ```
|
2017-01-26 16:10:48 -05:00
|
|
|
fn from(ip: u128) -> Ipv6Addr {
|
2019-02-11 23:00:01 -08:00
|
|
|
Ipv6Addr::from(ip.to_be_bytes())
|
2017-01-26 16:10:48 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-18 13:53:40 +01:00
|
|
|
#[stable(feature = "ipv6_from_octets", since = "1.9.0")]
|
|
|
|
|
impl From<[u8; 16]> for Ipv6Addr {
|
2020-01-29 15:09:04 +01:00
|
|
|
/// Creates an `Ipv6Addr` from a sixteen element byte array.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::from([
|
|
|
|
|
/// 25u8, 24u8, 23u8, 22u8, 21u8, 20u8, 19u8, 18u8,
|
|
|
|
|
/// 17u8, 16u8, 15u8, 14u8, 13u8, 12u8, 11u8, 10u8,
|
|
|
|
|
/// ]);
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// Ipv6Addr::new(
|
|
|
|
|
/// 0x1918, 0x1716,
|
|
|
|
|
/// 0x1514, 0x1312,
|
|
|
|
|
/// 0x1110, 0x0f0e,
|
|
|
|
|
/// 0x0d0c, 0x0b0a
|
|
|
|
|
/// ),
|
|
|
|
|
/// addr
|
|
|
|
|
/// );
|
|
|
|
|
/// ```
|
2016-03-18 13:53:40 +01:00
|
|
|
fn from(octets: [u8; 16]) -> Ipv6Addr {
|
2018-08-06 15:51:11 +02:00
|
|
|
let inner = c::in6_addr { s6_addr: octets };
|
2016-03-18 13:53:40 +01:00
|
|
|
Ipv6Addr::from_inner(inner)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-20 08:38:39 +01:00
|
|
|
#[stable(feature = "ipv6_from_segments", since = "1.16.0")]
|
2016-12-02 12:18:01 -05:00
|
|
|
impl From<[u16; 8]> for Ipv6Addr {
|
2020-01-29 15:09:04 +01:00
|
|
|
/// Creates an `Ipv6Addr` from an eight element 16-bit array.
|
|
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::Ipv6Addr;
|
|
|
|
|
///
|
|
|
|
|
/// let addr = Ipv6Addr::from([
|
|
|
|
|
/// 525u16, 524u16, 523u16, 522u16,
|
|
|
|
|
/// 521u16, 520u16, 519u16, 518u16,
|
|
|
|
|
/// ]);
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// Ipv6Addr::new(
|
|
|
|
|
/// 0x20d, 0x20c,
|
|
|
|
|
/// 0x20b, 0x20a,
|
|
|
|
|
/// 0x209, 0x208,
|
|
|
|
|
/// 0x207, 0x206
|
|
|
|
|
/// ),
|
|
|
|
|
/// addr
|
|
|
|
|
/// );
|
|
|
|
|
/// ```
|
2016-12-02 12:18:01 -05:00
|
|
|
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 {
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Creates an `IpAddr::V6` from a sixteen element byte array.
|
2018-03-26 17:43:49 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// let addr = IpAddr::from([
|
|
|
|
|
/// 25u8, 24u8, 23u8, 22u8, 21u8, 20u8, 19u8, 18u8,
|
|
|
|
|
/// 17u8, 16u8, 15u8, 14u8, 13u8, 12u8, 11u8, 10u8,
|
|
|
|
|
/// ]);
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// IpAddr::V6(Ipv6Addr::new(
|
|
|
|
|
/// 0x1918, 0x1716,
|
|
|
|
|
/// 0x1514, 0x1312,
|
|
|
|
|
/// 0x1110, 0x0f0e,
|
|
|
|
|
/// 0x0d0c, 0x0b0a
|
|
|
|
|
/// )),
|
|
|
|
|
/// addr
|
|
|
|
|
/// );
|
|
|
|
|
/// ```
|
2017-01-28 12:53:17 -08:00
|
|
|
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 {
|
2019-02-09 22:16:58 +00:00
|
|
|
/// Creates an `IpAddr::V6` from an eight element 16-bit array.
|
2018-03-26 17:43:49 +02:00
|
|
|
///
|
|
|
|
|
/// # Examples
|
|
|
|
|
///
|
|
|
|
|
/// ```
|
|
|
|
|
/// use std::net::{IpAddr, Ipv6Addr};
|
|
|
|
|
///
|
|
|
|
|
/// let addr = IpAddr::from([
|
|
|
|
|
/// 525u16, 524u16, 523u16, 522u16,
|
|
|
|
|
/// 521u16, 520u16, 519u16, 518u16,
|
|
|
|
|
/// ]);
|
|
|
|
|
/// assert_eq!(
|
|
|
|
|
/// IpAddr::V6(Ipv6Addr::new(
|
|
|
|
|
/// 0x20d, 0x20c,
|
|
|
|
|
/// 0x20b, 0x20a,
|
|
|
|
|
/// 0x209, 0x208,
|
|
|
|
|
/// 0x207, 0x206
|
|
|
|
|
/// )),
|
|
|
|
|
/// addr
|
|
|
|
|
/// );
|
|
|
|
|
/// ```
|
2017-01-28 12:54:09 -08:00
|
|
|
fn from(segments: [u16; 8]) -> IpAddr {
|
|
|
|
|
IpAddr::V6(Ipv6Addr::from(segments))
|
2017-01-28 12:53:17 -08:00
|
|
|
}
|
|
|
|
|
}
|