diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2012-04-19 17:38:03 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2012-05-04 16:11:54 +0200 |
commit | 9bab521df895c149579b9e64931405c56b008afb (patch) | |
tree | 18177aabb6eb11265e3500a75abcdd6bf1150c86 /src/netbase.h | |
parent | a012e2db59585bfa1978615aacade281053e0ae5 (diff) |
Support connecting by hostnames passed to proxy (-proxydns)
Diffstat (limited to 'src/netbase.h')
-rw-r--r-- | src/netbase.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/netbase.h b/src/netbase.h index 00b6850b2a..3d29569069 100644 --- a/src/netbase.h +++ b/src/netbase.h @@ -119,9 +119,13 @@ bool Lookup(const char *pszName, CService& addr, int portDefault = 0, bool fAllo bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault = 0, bool fAllowLookup = true, unsigned int nMaxSolutions = 0); bool LookupNumeric(const char *pszName, CService& addr, int portDefault = 0); bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout = nConnectTimeout); +bool ConnectSocketByName(CService &addr, SOCKET& hSocketRet, const char *pszDest, int portDefault = 0, int nTimeout = nConnectTimeout); // Settings +extern int nSocksVersion; extern int fUseProxy; +extern bool fProxyNameLookup; +extern bool fNameLookup; extern CService addrProxy; #endif |