diff options
author | Carl Dong <accounts@carldong.me> | 2019-03-28 15:21:31 -0400 |
---|---|---|
committer | Carl Dong <accounts@carldong.me> | 2019-05-15 14:21:48 -0400 |
commit | 8be3f306338e27b3fa3ad3bfb75f822d038909a5 (patch) | |
tree | 20e091b30f50594540377bb60cd8022f1ab8c679 /src/netaddress.h | |
parent | 2d16fb7a2b6a9e5a2535295d2de03e27c2438d1f (diff) |
netaddress: Update CNetAddr for ORCHIDv2
The original ORCHID prefix was deprecated as of 2014-03, the new
ORCHIDv2 prefix was allocated by RFC7343 as of 2014-07. We did not
consider the original ORCHID prefix routable, and I don't see any reason
to consider the new one to be either.
Diffstat (limited to 'src/netaddress.h')
-rw-r--r-- | src/netaddress.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/netaddress.h b/src/netaddress.h index 8230e40606..673eaf8d7b 100644 --- a/src/netaddress.h +++ b/src/netaddress.h @@ -63,7 +63,8 @@ class CNetAddr bool IsRFC3964() const; // IPv6 6to4 tunnelling (2002::/16) bool IsRFC4193() const; // IPv6 unique local (FC00::/7) bool IsRFC4380() const; // IPv6 Teredo tunnelling (2001::/32) - bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28) + bool IsRFC4843() const; // IPv6 ORCHID (deprecated) (2001:10::/28) + bool IsRFC7343() const; // IPv6 ORCHIDv2 (2001:20::/28) bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64) bool IsRFC6052() const; // IPv6 well-known prefix for IPv4-embedded address (64:FF9B::/96) bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96) (actually defined in RFC2765) |