diff options
| author | Mark Tyneway <[email protected]> | 2019-12-16 19:42:18 -0800 |
|---|---|---|
| committer | Mark Tyneway <[email protected]> | 2019-12-16 19:42:18 -0800 |
| commit | 419ef3b7cc04e3ab26252d7024da847dfd5ab1a3 (patch) | |
| tree | 026889a924543703df2e5721bb11eb05c00a5b7c /src/netaddress.h | |
| parent | Merge #17229: tests: Add fuzzing harnesses for various Base{32,58,64} and hex... (diff) | |
| download | discoin-419ef3b7cc04e3ab26252d7024da847dfd5ab1a3.tar.xz discoin-419ef3b7cc04e3ab26252d7024da847dfd5ab1a3.zip | |
CNetAddr: fix IsRFC2544 comment
Diffstat (limited to 'src/netaddress.h')
| -rw-r--r-- | src/netaddress.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/netaddress.h b/src/netaddress.h index fbb155333..32f4476fa 100644 --- a/src/netaddress.h +++ b/src/netaddress.h @@ -54,7 +54,7 @@ class CNetAddr bool IsIPv4() const; // IPv4 mapped address (::FFFF:0:0/96, 0.0.0.0/0) bool IsIPv6() const; // IPv6 address (not mapped IPv4, not Tor) bool IsRFC1918() const; // IPv4 private networks (10.0.0.0/8, 192.168.0.0/16, 172.16.0.0/12) - bool IsRFC2544() const; // IPv4 inter-network communications (192.18.0.0/15) + bool IsRFC2544() const; // IPv4 inter-network communications (198.18.0.0/15) bool IsRFC6598() const; // IPv4 ISP-level NAT (100.64.0.0/10) bool IsRFC5737() const; // IPv4 documentation addresses (192.0.2.0/24, 198.51.100.0/24, 203.0.113.0/24) bool IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32) |