@@ -296,9 +296,9 @@ impl Ipv4Addr {
296
296
297
297
/// Returns true if this is a loopback address (127.0.0.0/8).
298
298
///
299
- /// This property is defined by [RFC 1122].
299
+ /// This property is defined by [IETF RFC 1122].
300
300
///
301
- /// [RFC 1122]: https://tools.ietf.org/html/rfc1122
301
+ /// [IETF RFC 1122]: https://tools.ietf.org/html/rfc1122
302
302
///
303
303
/// # Examples
304
304
///
@@ -315,13 +315,13 @@ impl Ipv4Addr {
315
315
316
316
/// Returns true if this is a private address.
317
317
///
318
- /// The private address ranges are defined in [RFC 1918] and include:
318
+ /// The private address ranges are defined in [IETF RFC 1918] and include:
319
319
///
320
320
/// - 10.0.0.0/8
321
321
/// - 172.16.0.0/12
322
322
/// - 192.168.0.0/16
323
323
///
324
- /// [RFC 1918]: https://tools.ietf.org/html/rfc1918
324
+ /// [IETF RFC 1918]: https://tools.ietf.org/html/rfc1918
325
325
///
326
326
/// # Examples
327
327
///
@@ -348,9 +348,9 @@ impl Ipv4Addr {
348
348
349
349
/// Returns true if the address is link-local (169.254.0.0/16).
350
350
///
351
- /// This property is defined by [RFC 3927].
351
+ /// This property is defined by [IETF RFC 3927].
352
352
///
353
- /// [RFC 3927]: https://tools.ietf.org/html/rfc3927
353
+ /// [IETF RFC 3927]: https://tools.ietf.org/html/rfc3927
354
354
///
355
355
/// # Examples
356
356
///
@@ -403,9 +403,9 @@ impl Ipv4Addr {
403
403
/// Returns true if this is a multicast address (224.0.0.0/4).
404
404
///
405
405
/// Multicast addresses have a most significant octet between 224 and 239,
406
- /// and is defined by [RFC 5771].
406
+ /// and is defined by [IETF RFC 5771].
407
407
///
408
- /// [RFC 5771]: https://tools.ietf.org/html/rfc5771
408
+ /// [IETF RFC 5771]: https://tools.ietf.org/html/rfc5771
409
409
///
410
410
/// # Examples
411
411
///
@@ -423,9 +423,9 @@ impl Ipv4Addr {
423
423
424
424
/// Returns true if this is a broadcast address (255.255.255.255).
425
425
///
426
- /// A broadcast address has all octets set to 255 as defined in [RFC 919].
426
+ /// A broadcast address has all octets set to 255 as defined in [IETF RFC 919].
427
427
///
428
- /// [RFC 919]: https://tools.ietf.org/html/rfc919
428
+ /// [IETF RFC 919]: https://tools.ietf.org/html/rfc919
429
429
///
430
430
/// # Examples
431
431
///
@@ -443,13 +443,13 @@ impl Ipv4Addr {
443
443
444
444
/// Returns true if this address is in a range designated for documentation.
445
445
///
446
- /// This is defined in [RFC 5737]:
446
+ /// This is defined in [IETF RFC 5737]:
447
447
///
448
448
/// - 192.0.2.0/24 (TEST-NET-1)
449
449
/// - 198.51.100.0/24 (TEST-NET-2)
450
450
/// - 203.0.113.0/24 (TEST-NET-3)
451
451
///
452
- /// [RFC 5737]: https://tools.ietf.org/html/rfc5737
452
+ /// [IETF RFC 5737]: https://tools.ietf.org/html/rfc5737
453
453
///
454
454
/// # Examples
455
455
///
@@ -719,9 +719,9 @@ impl Ipv6Addr {
719
719
720
720
/// Returns true for the special 'unspecified' address (::).
721
721
///
722
- /// This property is defined in [RFC 4291].
722
+ /// This property is defined in [IETF RFC 4291].
723
723
///
724
- /// [RFC 4291]: https://tools.ietf.org/html/rfc4291
724
+ /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
725
725
///
726
726
/// # Examples
727
727
///
@@ -738,9 +738,9 @@ impl Ipv6Addr {
738
738
739
739
/// Returns true if this is a loopback address (::1).
740
740
///
741
- /// This property is defined in [RFC 4291].
741
+ /// This property is defined in [IETF RFC 4291].
742
742
///
743
- /// [RFC 4291]: https://tools.ietf.org/html/rfc4291
743
+ /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
744
744
///
745
745
/// # Examples
746
746
///
@@ -786,9 +786,9 @@ impl Ipv6Addr {
786
786
787
787
/// Returns true if this is a unique local address (fc00::/7).
788
788
///
789
- /// This property is defined in [RFC 4193].
789
+ /// This property is defined in [IETF RFC 4193].
790
790
///
791
- /// [RFC 4193]: https://tools.ietf.org/html/rfc4193
791
+ /// [IETF RFC 4193]: https://tools.ietf.org/html/rfc4193
792
792
///
793
793
/// # Examples
794
794
///
@@ -809,9 +809,9 @@ impl Ipv6Addr {
809
809
810
810
/// Returns true if the address is unicast and link-local (fe80::/10).
811
811
///
812
- /// This property is defined in [RFC 4291].
812
+ /// This property is defined in [IETF RFC 4291].
813
813
///
814
- /// [RFC 4291]: https://tools.ietf.org/html/rfc4291
814
+ /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
815
815
///
816
816
/// # Examples
817
817
///
@@ -853,9 +853,9 @@ impl Ipv6Addr {
853
853
/// Returns true if this is an address reserved for documentation
854
854
/// (2001:db8::/32).
855
855
///
856
- /// This property is defined in [RFC 3849].
856
+ /// This property is defined in [IETF RFC 3849].
857
857
///
858
- /// [RFC 3849]: https://tools.ietf.org/html/rfc3849
858
+ /// [IETF RFC 3849]: https://tools.ietf.org/html/rfc3849
859
859
///
860
860
/// # Examples
861
861
///
@@ -939,9 +939,9 @@ impl Ipv6Addr {
939
939
940
940
/// Returns true if this is a multicast address (ff00::/8).
941
941
///
942
- /// This property is defined by [RFC 4291].
942
+ /// This property is defined by [IETF RFC 4291].
943
943
///
944
- /// [RFC 4291]: https://tools.ietf.org/html/rfc4291
944
+ /// [IETF RFC 4291]: https://tools.ietf.org/html/rfc4291
945
945
/// # Examples
946
946
///
947
947
/// ```
0 commit comments