Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit afa0ea9

Browse files
committedDec 27, 2023
Revert is_unicast_global changes
1 parent d845f61 commit afa0ea9

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed
 

‎library/core/src/net/ip_addr.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1692,7 +1692,6 @@ impl Ipv6Addr {
16921692
/// - unique local addresses
16931693
/// - the unspecified address
16941694
/// - the address range reserved for documentation
1695-
/// - 6to4 addresses
16961695
///
16971696
/// This method returns [`true`] for site-local addresses as per [RFC 4291 section 2.5.7]
16981697
///
@@ -1726,8 +1725,6 @@ impl Ipv6Addr {
17261725
&& !self.is_unspecified()
17271726
&& !self.is_documentation()
17281727
&& !self.is_benchmarking()
1729-
// 6to4 (`2002::/16`), not documented as globally reachable by IANA
1730-
&& self.segments()[0] != 0x2002
17311728
}
17321729

17331730
/// Returns the address's multicast scope if the address is multicast.

‎library/core/tests/net/ip_addr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -672,7 +672,7 @@ fn ipv6_properties() {
672672
global | unicast_global
673673
);
674674

675-
check!("2002::", &[0x20, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]);
675+
check!("2002::", &[0x20, 0x02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], unicast_global);
676676

677677
check!("fc00::", &[0xfc, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], unique_local);
678678

0 commit comments

Comments
 (0)
Please sign in to comment.