diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-10-11 00:41:33 -0700 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2012-10-11 00:41:33 -0700 |
commit | 24694e24ed6085d2184b396b9e8f717cc56754c3 (patch) | |
tree | 12971ce715d8de6bd38cb7a51688ce85fc7ca921 /src/netbase.h | |
parent | fae3989ffc5102af00a932fcf72b5be1e8566912 (diff) | |
parent | 4e882b79605e15297f7c5411bfd5f3dce4cad6f1 (diff) |
Merge pull request #1913 from sipa/noi2p
Remove I2P support from netbase
Diffstat (limited to 'src/netbase.h')
-rw-r--r-- | src/netbase.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/netbase.h b/src/netbase.h index 0a29d4ff0c..e4ec4ef597 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -23,7 +23,6 @@ enum Network NET_IPV4, NET_IPV6, NET_TOR, - NET_I2P, NET_MAX, }; @@ -44,9 +43,9 @@ class CNetAddr explicit CNetAddr(const std::string &strIp, bool fAllowLookup = false); void Init(); void SetIP(const CNetAddr& ip); - bool SetSpecial(const std::string &strName); // for Tor and I2P addresses + bool SetSpecial(const std::string &strName); // for Tor addresses 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/I2P) + 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 IsRFC3849() const; // IPv6 documentation address (2001:0DB8::/32) bool IsRFC3927() const; // IPv4 autoconfig (169.254.0.0/16) @@ -58,7 +57,6 @@ class CNetAddr bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96) bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96) bool IsTor() const; - bool IsI2P() const; bool IsLocal() const; bool IsRoutable() const; bool IsValid() const; |