Use the variable name _ for unused return values
[bitcoinplatinum.git] / src / netbase.h
blob6572f0a12eb41c7e04262f4a56222c3c5fe6873e
1 // Copyright (c) 2009-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_NETBASE_H
6 #define BITCOIN_NETBASE_H
8 #if defined(HAVE_CONFIG_H)
9 #include "config/bitcoin-config.h"
10 #endif
12 #include "compat.h"
13 #include "netaddress.h"
14 #include "serialize.h"
16 #include <stdint.h>
17 #include <string>
18 #include <vector>
20 extern int nConnectTimeout;
21 extern bool fNameLookup;
23 //! -timeout default
24 static const int DEFAULT_CONNECT_TIMEOUT = 5000;
25 //! -dns default
26 static const int DEFAULT_NAME_LOOKUP = true;
28 class proxyType
30 public:
31 proxyType(): randomize_credentials(false) {}
32 explicit proxyType(const CService &_proxy, bool _randomize_credentials=false): proxy(_proxy), randomize_credentials(_randomize_credentials) {}
34 bool IsValid() const { return proxy.IsValid(); }
36 CService proxy;
37 bool randomize_credentials;
40 enum Network ParseNetwork(std::string net);
41 std::string GetNetworkName(enum Network net);
42 bool SetProxy(enum Network net, const proxyType &addrProxy);
43 bool GetProxy(enum Network net, proxyType &proxyInfoOut);
44 bool IsProxy(const CNetAddr &addr);
45 bool SetNameProxy(const proxyType &addrProxy);
46 bool HaveNameProxy();
47 bool LookupHost(const char *pszName, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions, bool fAllowLookup);
48 bool LookupHost(const char *pszName, CNetAddr& addr, bool fAllowLookup);
49 bool Lookup(const char *pszName, CService& addr, int portDefault, bool fAllowLookup);
50 bool Lookup(const char *pszName, std::vector<CService>& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions);
51 CService LookupNumeric(const char *pszName, int portDefault = 0);
52 bool LookupSubNet(const char *pszName, CSubNet& subnet);
53 bool ConnectSocket(const CService &addr, SOCKET& hSocketRet, int nTimeout, bool *outProxyConnectionFailed = nullptr);
54 bool ConnectSocketByName(CService &addr, SOCKET& hSocketRet, const char *pszDest, int portDefault, int nTimeout, bool *outProxyConnectionFailed = nullptr);
55 /** Return readable error string for a network error code */
56 std::string NetworkErrorString(int err);
57 /** Close socket and set hSocket to INVALID_SOCKET */
58 bool CloseSocket(SOCKET& hSocket);
59 /** Disable or enable blocking-mode for a socket */
60 bool SetSocketNonBlocking(const SOCKET& hSocket, bool fNonBlocking);
61 /** Set the TCP_NODELAY flag on a socket */
62 bool SetSocketNoDelay(const SOCKET& hSocket);
63 /**
64 * Convert milliseconds to a struct timeval for e.g. select.
66 struct timeval MillisToTimeval(int64_t nTimeout);
67 void InterruptSocks5(bool interrupt);
69 #endif // BITCOIN_NETBASE_H