mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-06 10:18:44 -05:00
489030f2a8
96635e6177
init: use GetNetworkNames() in -onlynet help (Jon Atack)0dbde700a6
rpc: use GetNetworkNames() in getnetworkinfo and getpeerinfo helps (Jon Atack)1c3af37881
net: create GetNetworkNames() (Jon Atack)b45eae4d53
net: update NET_UNROUTABLE to not_publicly_routable in GetNetworkName() (Jon Atack) Pull request description: per the IRC discussion today at http://www.erisian.com.au/bitcoin-core-dev/log-2021-01-19.html#l-87 - return a more helpful string name for `Network::NET_UNROUTABLE`: "not_publicly_routable" instead of "unroutable" - update the RPC getpeerinfo "network" help, and automate it and the getnetworkinfo "network#name" and the -onlynet help doc generation ACKs for top commit: theStack: re-ACK96635e6177
🌳 MarcoFalke: review ACK96635e6177
🐗 Tree-SHA512: 511a7d987126b48a7a090739aa7c4964b6186a3ff8f5f7eec9233dd816c6b7a6dc91b3ea6b824aa68f218a8a3ebdc6ffd214e9a88af38f2bf23f3257c4284c3a
80 lines
3.1 KiB
C++
80 lines
3.1 KiB
C++
// Copyright (c) 2009-2019 The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef BITCOIN_NETBASE_H
|
|
#define BITCOIN_NETBASE_H
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config/bitcoin-config.h>
|
|
#endif
|
|
|
|
#include <compat.h>
|
|
#include <netaddress.h>
|
|
#include <serialize.h>
|
|
#include <util/sock.h>
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <stdint.h>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
extern int nConnectTimeout;
|
|
extern bool fNameLookup;
|
|
|
|
//! -timeout default
|
|
static const int DEFAULT_CONNECT_TIMEOUT = 5000;
|
|
//! -dns default
|
|
static const int DEFAULT_NAME_LOOKUP = true;
|
|
|
|
class proxyType
|
|
{
|
|
public:
|
|
proxyType(): randomize_credentials(false) {}
|
|
explicit proxyType(const CService &_proxy, bool _randomize_credentials=false): proxy(_proxy), randomize_credentials(_randomize_credentials) {}
|
|
|
|
bool IsValid() const { return proxy.IsValid(); }
|
|
|
|
CService proxy;
|
|
bool randomize_credentials;
|
|
};
|
|
|
|
enum Network ParseNetwork(const std::string& net);
|
|
std::string GetNetworkName(enum Network net);
|
|
/** Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE. */
|
|
std::vector<std::string> GetNetworkNames(bool append_unroutable = false);
|
|
bool SetProxy(enum Network net, const proxyType &addrProxy);
|
|
bool GetProxy(enum Network net, proxyType &proxyInfoOut);
|
|
bool IsProxy(const CNetAddr &addr);
|
|
bool SetNameProxy(const proxyType &addrProxy);
|
|
bool HaveNameProxy();
|
|
bool GetNameProxy(proxyType &nameProxyOut);
|
|
bool LookupHost(const std::string& name, std::vector<CNetAddr>& vIP, unsigned int nMaxSolutions, bool fAllowLookup);
|
|
bool LookupHost(const std::string& name, CNetAddr& addr, bool fAllowLookup);
|
|
bool Lookup(const std::string& name, CService& addr, int portDefault, bool fAllowLookup);
|
|
bool Lookup(const std::string& name, std::vector<CService>& vAddr, int portDefault, bool fAllowLookup, unsigned int nMaxSolutions);
|
|
CService LookupNumeric(const std::string& name, int portDefault = 0);
|
|
bool LookupSubNet(const std::string& strSubnet, CSubNet& subnet);
|
|
|
|
/**
|
|
* Create a TCP socket in the given address family.
|
|
* @param[in] address_family The socket is created in the same address family as this address.
|
|
* @return pointer to the created Sock object or unique_ptr that owns nothing in case of failure
|
|
*/
|
|
std::unique_ptr<Sock> CreateSockTCP(const CService& address_family);
|
|
|
|
/**
|
|
* Socket factory. Defaults to `CreateSockTCP()`, but can be overridden by unit tests.
|
|
*/
|
|
extern std::function<std::unique_ptr<Sock>(const CService&)> CreateSock;
|
|
|
|
bool ConnectSocketDirectly(const CService &addrConnect, const SOCKET& hSocketRet, int nTimeout, bool manual_connection);
|
|
bool ConnectThroughProxy(const proxyType& proxy, const std::string& strDest, int port, const Sock& sock, int nTimeout, bool& outProxyConnectionFailed);
|
|
/** Disable or enable blocking-mode for a socket */
|
|
bool SetSocketNonBlocking(const SOCKET& hSocket, bool fNonBlocking);
|
|
/** Set the TCP_NODELAY flag on a socket */
|
|
bool SetSocketNoDelay(const SOCKET& hSocket);
|
|
void InterruptSocks5(bool interrupt);
|
|
|
|
#endif // BITCOIN_NETBASE_H
|