diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-30 15:32:36 +0200 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2014-07-30 15:41:17 +0200 |
commit | 075cf49e593025030c8b3572e606960f15de424e (patch) | |
tree | 307aa1741874c20e3118bcbc5488a89cddc81ec0 /src/netbase.h | |
parent | c91a9471be7a96311a7e1452a3624aa557bc185d (diff) |
Add GetNetworkName function
Returns the network name for an Network enum.
Diffstat (limited to 'src/netbase.h')
-rw-r--r-- | src/netbase.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/netbase.h b/src/netbase.h index 7d83e35344..bd8dbf9695 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -26,7 +26,7 @@ extern bool fNameLookup; enum Network { - NET_UNROUTABLE, + NET_UNROUTABLE = 0, NET_IPV4, NET_IPV6, NET_TOR, @@ -164,6 +164,7 @@ class CService : public CNetAddr typedef CService proxyType; enum Network ParseNetwork(std::string net); +std::string GetNetworkName(enum Network net); void SplitHostPort(std::string in, int &portOut, std::string &hostOut); bool SetProxy(enum Network net, CService addrProxy); bool GetProxy(enum Network net, proxyType &proxyInfoOut); |