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