diff options
| author | Kamil Domanski <[email protected]> | 2014-05-13 21:02:17 +0200 |
|---|---|---|
| committer | Kamil Domanski <[email protected]> | 2014-05-20 14:58:21 +0200 |
| commit | 5bd4adca716738a4de35aed2ccad874d3301fefc (patch) | |
| tree | 9faafe92cb026a304143580669d2f53960510d55 /src/netbase.cpp | |
| parent | remove LogException( ) which is never used (diff) | |
| download | discoin-5bd4adca716738a4de35aed2ccad874d3301fefc.tar.xz discoin-5bd4adca716738a4de35aed2ccad874d3301fefc.zip | |
remove LookupHostNumeric( ) which is never used
Diffstat (limited to 'src/netbase.cpp')
| -rw-r--r-- | src/netbase.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/netbase.cpp b/src/netbase.cpp index 82a681281..c72d777e3 100644 --- a/src/netbase.cpp +++ b/src/netbase.cpp @@ -123,11 +123,6 @@ bool LookupHost(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nM return LookupIntern(strHost.c_str(), vIP, nMaxSolutions, fAllowLookup); } -bool LookupHostNumeric(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions) -{ - return LookupHost(pszName, vIP, nMaxSolutions, false); -} - bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions) { if (pszName[0] == 0) |