File tree 1 file changed +6
-0
lines changed
1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -1265,11 +1265,14 @@ impl Ipv6Addr {
1265
1265
/// # See also
1266
1266
///
1267
1267
/// - [IETF RFC 4291 section 2.5.6]
1268
+ /// - [RFC 4291 errata 4406] (which has been rejected but provides useful
1269
+ /// insight)
1268
1270
/// - [`is_unicast_link_local()`]
1269
1271
///
1270
1272
/// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
1271
1273
/// [IETF RFC 4291 section 2.5.6]: https://tools.ietf.org/html/rfc4291#section-2.5.6
1272
1274
/// [`true`]: ../../std/primitive.bool.html
1275
+ /// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
1273
1276
/// [`is_unicast_link_local()`]: ../../std/net/struct.Ipv6Addr.html#method.is_unicast_link_local
1274
1277
pub fn is_unicast_link_local_strict ( & self ) -> bool {
1275
1278
( self . segments ( ) [ 0 ] & 0xffff ) == 0xfe80
@@ -1321,9 +1324,12 @@ impl Ipv6Addr {
1321
1324
/// # See also
1322
1325
///
1323
1326
/// - [IETF RFC 4291 section 2.4]
1327
+ /// - [RFC 4291 errata 4406] (which has been rejected but provides useful
1328
+ /// insight)
1324
1329
///
1325
1330
/// [IETF RFC 4291 section 2.4]: https://tools.ietf.org/html/rfc4291#section-2.4
1326
1331
/// [`true`]: ../../std/primitive.bool.html
1332
+ /// [RFC 4291 errata 4406]: https://www.rfc-editor.org/errata/eid4406
1327
1333
/// [`is_unicast_link_local_strict()`]: ../../std/net/struct.Ipv6Addr.html#method.is_unicast_link_local_strict
1328
1334
pub fn is_unicast_link_local ( & self ) -> bool {
1329
1335
( self . segments ( ) [ 0 ] & 0xffc0 ) == 0xfe80
You can’t perform that action at this time.
0 commit comments