diff options
| author | Carl Dong <[email protected]> | 2019-04-01 15:22:34 -0400 |
|---|---|---|
| committer | Carl Dong <[email protected]> | 2019-04-10 11:48:47 -0400 |
| commit | 303372c41a8d5c58a46cf9ed595e30e67bd0bc99 (patch) | |
| tree | 18d7343589ea66c3ee797d280246a791aaf68ffd /src/netaddress.h | |
| parent | Merge #15763: Update bips.md for 0.18.0 (diff) | |
| download | discoin-303372c41a8d5c58a46cf9ed595e30e67bd0bc99.tar.xz discoin-303372c41a8d5c58a46cf9ed595e30e67bd0bc99.zip | |
docs: Improve netaddress comments
- Improve IsRFC methods docs
- Improve {Is,Set}Internal docs
- Add tor methods docs
- Add IsIPv{4,6} docs
- Add IsValid docs
- Add IsRoutable docs
- Improve GetGroup docs
- Add CService::GetSockAddr docs
- Add CService::GetKey docs
- Add CSubNet::Match docs
- Add NetmaskBits docs
- Add CNetAddr default constructor docs
Diffstat (limited to 'src/netaddress.h')
| -rw-r--r-- | src/netaddress.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/netaddress.h b/src/netaddress.h index ca435d17d..8230e4060 100644 --- a/src/netaddress.h +++ b/src/netaddress.h @@ -48,10 +48,6 @@ class CNetAddr void SetRaw(Network network, const uint8_t *data); public: - /** - * Transform an arbitrary string into a non-routable ipv6 address. - * Useful for mapping resolved addresses back to their source. - */ bool SetInternal(const std::string& name); bool SetSpecial(const std::string &strName); // for Tor addresses @@ -69,8 +65,8 @@ class CNetAddr bool IsRFC4380() const; // IPv6 Teredo tunnelling (2001::/32) bool IsRFC4843() const; // IPv6 ORCHID (2001:10::/28) bool IsRFC4862() const; // IPv6 autoconfig (FE80::/64) - bool IsRFC6052() const; // IPv6 well-known prefix (64:FF9B::/96) - bool IsRFC6145() const; // IPv6 IPv4-translated address (::FFFF:0:0:0/96) + 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) bool IsTor() const; bool IsLocal() const; bool IsRoutable() const; |