![]() |
Bitcoin Core
26.1.0
P2P Digital Currency
|
#include <compat/compat.h>#include <netaddress.h>#include <serialize.h>#include <util/sock.h>#include <functional>#include <memory>#include <stdint.h>#include <string>#include <type_traits>#include <unordered_set>#include <vector>Go to the source code of this file.
Classes | |
| class | Proxy |
| struct | ProxyCredentials |
| Credentials for proxy authentication. More... | |
| class | ReachableNets |
| List of reachable networks. More... | |
Typedefs | |
| using | DNSLookupFn = std::function< std::vector< CNetAddr >(const std::string &, bool)> |
Enumerations | |
| enum | ConnectionDirection { ConnectionDirection::None = 0, ConnectionDirection::In = (1U << 0), ConnectionDirection::Out = (1U << 1), ConnectionDirection::Both = (In | Out) } |
Functions | |
| static ConnectionDirection & | operator|= (ConnectionDirection &a, ConnectionDirection b) |
| static bool | operator & (ConnectionDirection a, ConnectionDirection b) |
| std::vector< CNetAddr > | WrappedGetAddrInfo (const std::string &name, bool allow_lookup) |
| Wrapper for getaddrinfo(3). More... | |
| enum Network | ParseNetwork (const std::string &net) |
| std::string | GetNetworkName (enum Network net) |
| std::vector< std::string > | GetNetworkNames (bool append_unroutable=false) |
| Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE. More... | |
| bool | SetProxy (enum Network net, const Proxy &addrProxy) |
| bool | GetProxy (enum Network net, Proxy &proxyInfoOut) |
| bool | IsProxy (const CNetAddr &addr) |
| bool | SetNameProxy (const Proxy &addrProxy) |
| Set the name proxy to use for all connections to nodes specified by a hostname. More... | |
| bool | HaveNameProxy () |
| bool | GetNameProxy (Proxy &nameProxyOut) |
| std::vector< CNetAddr > | LookupHost (const std::string &name, unsigned int nMaxSolutions, bool fAllowLookup, DNSLookupFn dns_lookup_function=g_dns_lookup) |
| Resolve a host string to its corresponding network addresses. More... | |
| std::optional< CNetAddr > | LookupHost (const std::string &name, bool fAllowLookup, DNSLookupFn dns_lookup_function=g_dns_lookup) |
| Resolve a host string to its first corresponding network address. More... | |
| std::vector< CService > | Lookup (const std::string &name, uint16_t portDefault, bool fAllowLookup, unsigned int nMaxSolutions, DNSLookupFn dns_lookup_function=g_dns_lookup) |
| Resolve a service string to its corresponding service. More... | |
| std::optional< CService > | Lookup (const std::string &name, uint16_t portDefault, bool fAllowLookup, DNSLookupFn dns_lookup_function=g_dns_lookup) |
| Resolve a service string to its first corresponding service. More... | |
| CService | LookupNumeric (const std::string &name, uint16_t portDefault=0, DNSLookupFn dns_lookup_function=g_dns_lookup) |
| Resolve a service string with a numeric IP to its first corresponding service. More... | |
| bool | LookupSubNet (const std::string &subnet_str, CSubNet &subnet_out) |
| Parse and resolve a specified subnet string into the appropriate internal representation. More... | |
| std::unique_ptr< Sock > | CreateSockTCP (const CService &address_family) |
| Create a TCP socket in the given address family. More... | |
| bool | ConnectSocketDirectly (const CService &addrConnect, const Sock &sock, int nTimeout, bool manual_connection) |
| Try to connect to the specified service on the specified socket. More... | |
| bool | ConnectThroughProxy (const Proxy &proxy, const std::string &strDest, uint16_t port, const Sock &sock, int nTimeout, bool &outProxyConnectionFailed) |
| Connect to a specified destination service through a SOCKS5 proxy by first connecting to the SOCKS5 proxy. More... | |
| void | InterruptSocks5 (bool interrupt) |
| bool | Socks5 (const std::string &strDest, uint16_t port, const ProxyCredentials *auth, const Sock &socket) |
| Connect to a specified destination service through an already connected SOCKS5 proxy. More... | |
| bool | IsBadPort (uint16_t port) |
| Determine if a port is "bad" from the perspective of attempting to connect to a node on that port. More... | |
| CService | MaybeFlipIPv6toCJDNS (const CService &service) |
| If an IPv6 address belongs to the address range used by the CJDNS network and the CJDNS network is reachable (-cjdnsreachable config is set), then change the type from NET_IPV6 to NET_CJDNS. More... | |
Variables | |
| int | nConnectTimeout |
| bool | fNameLookup |
| static const int | DEFAULT_CONNECT_TIMEOUT = 5000 |
| -timeout default More... | |
| static const int | DEFAULT_NAME_LOOKUP = true |
| -dns default More... | |
| ReachableNets | g_reachable_nets |
| DNSLookupFn | g_dns_lookup |
| std::function< std::unique_ptr< Sock >const CService &)> | CreateSock |
| Socket factory. More... | |
| using DNSLookupFn = std::function<std::vector<CNetAddr>(const std::string&, bool)> |
|
strong |
| bool ConnectSocketDirectly | ( | const CService & | addrConnect, |
| const Sock & | sock, | ||
| int | nTimeout, | ||
| bool | manual_connection | ||
| ) |
Try to connect to the specified service on the specified socket.
| addrConnect | The service to which to connect. |
| sock | The socket on which to connect. |
| nTimeout | Wait this many milliseconds for the connection to be established. |
| manual_connection | Whether or not the connection was manually requested (e.g. through the addnode RPC) |
Definition at line 514 of file netbase.cpp.
| bool ConnectThroughProxy | ( | const Proxy & | proxy, |
| const std::string & | strDest, | ||
| uint16_t | port, | ||
| const Sock & | sock, | ||
| int | nTimeout, | ||
| bool & | outProxyConnectionFailed | ||
| ) |
Connect to a specified destination service through a SOCKS5 proxy by first connecting to the SOCKS5 proxy.
| proxy | The SOCKS5 proxy. | |
| strDest | The destination service to which to connect. | |
| port | The destination port. | |
| sock | The socket on which to connect to the SOCKS5 proxy. | |
| nTimeout | Wait this many milliseconds for the connection to the SOCKS5 proxy to be established. | |
| [out] | outProxyConnectionFailed | Whether or not the connection to the SOCKS5 proxy failed. |
Definition at line 625 of file netbase.cpp.
Create a TCP socket in the given address family.
| [in] | address_family | The socket is created in the same address family as this address. |
Definition at line 453 of file netbase.cpp.
| bool GetNameProxy | ( | Proxy & | nameProxyOut | ) |
| std::string GetNetworkName | ( | enum Network | net | ) |
Definition at line 99 of file netbase.cpp.
| std::vector<std::string> GetNetworkNames | ( | bool | append_unroutable = false | ) |
Return a vector of publicly routable Network names; optionally append NET_UNROUTABLE.
Definition at line 115 of file netbase.cpp.
Definition at line 586 of file netbase.cpp.
| bool HaveNameProxy | ( | ) |
| void InterruptSocks5 | ( | bool | interrupt | ) |
Definition at line 684 of file netbase.cpp.
| bool IsBadPort | ( | uint16_t | port | ) |
Determine if a port is "bad" from the perspective of attempting to connect to a node on that port.
| [in] | port | Port to check. |
Definition at line 689 of file netbase.cpp.
| bool IsProxy | ( | const CNetAddr & | addr | ) |
Definition at line 616 of file netbase.cpp.
| std::vector<CService> Lookup | ( | const std::string & | name, |
| uint16_t | portDefault, | ||
| bool | fAllowLookup, | ||
| unsigned int | nMaxSolutions, | ||
| DNSLookupFn | dns_lookup_function = g_dns_lookup |
||
| ) |
Resolve a service string to its corresponding service.
| name | The string representing a service. Could be a name or a numerical IP address (IPv6 addresses should be in their disambiguated bracketed form), optionally followed by a uint16_t port number. (e.g. example.com:8333 or |
| portDefault | The default port for resulting services if not specified by the service string. |
| fAllowLookup | Whether or not hostname lookups are permitted. If yes, external queries may be performed. |
| nMaxSolutions | The maximum number of results we want, specifying 0 means "as many solutions as we get." |
Definition at line 176 of file netbase.cpp.
| std::optional<CService> Lookup | ( | const std::string & | name, |
| uint16_t | portDefault, | ||
| bool | fAllowLookup, | ||
| DNSLookupFn | dns_lookup_function = g_dns_lookup |
||
| ) |
Resolve a service string to its first corresponding service.
Definition at line 194 of file netbase.cpp.
| std::vector<CNetAddr> LookupHost | ( | const std::string & | name, |
| unsigned int | nMaxSolutions, | ||
| bool | fAllowLookup, | ||
| DNSLookupFn | dns_lookup_function = g_dns_lookup |
||
| ) |
Resolve a host string to its corresponding network addresses.
| name | The string representing a host. Could be a name or a numerical IP address (IPv6 addresses in their bracketed form are allowed). |
Definition at line 158 of file netbase.cpp.
| std::optional<CNetAddr> LookupHost | ( | const std::string & | name, |
| bool | fAllowLookup, | ||
| DNSLookupFn | dns_lookup_function = g_dns_lookup |
||
| ) |
Resolve a host string to its first corresponding network address.
Definition at line 170 of file netbase.cpp.
| CService LookupNumeric | ( | const std::string & | name, |
| uint16_t | portDefault = 0, |
||
| DNSLookupFn | dns_lookup_function = g_dns_lookup |
||
| ) |
Resolve a service string with a numeric IP to its first corresponding service.
Definition at line 201 of file netbase.cpp.
| bool LookupSubNet | ( | const std::string & | subnet_str, |
| CSubNet & | subnet_out | ||
| ) |
Parse and resolve a specified subnet string into the appropriate internal representation.
| [in] | subnet_str | A string representation of a subnet of the form network address [ "/", ( CIDR-style suffix | netmask ) ] e.g. "2001:db8::/32", "192.0.2.0/255.255.255.0" or "8.8.8.8". |
| [out] | subnet_out | Internal subnet representation, if parsable/resolvable from subnet_str. |
Definition at line 648 of file netbase.cpp.
If an IPv6 address belongs to the address range used by the CJDNS network and the CJDNS network is reachable (-cjdnsreachable config is set), then change the type from NET_IPV6 to NET_CJDNS.
| [in] | service | Address to potentially convert. |
service either unmodified or changed to CJDNS. Definition at line 779 of file netbase.cpp.
|
inlinestatic |
|
inlinestatic |
| enum Network ParseNetwork | ( | const std::string & | net | ) |
Definition at line 81 of file netbase.cpp.
| bool SetNameProxy | ( | const Proxy & | addrProxy | ) |
Set the name proxy to use for all connections to nodes specified by a hostname.
After setting this proxy, connecting to a node specified by a hostname won't result in a local lookup of said hostname, rather, connect to the node by asking the name proxy for a proxy connection to the hostname, effectively delegating the hostname lookup to the specified proxy.
This delegation increases privacy for those who set the name proxy as they no longer leak their external hostname queries to their DNS servers.
Definition at line 595 of file netbase.cpp.
Definition at line 577 of file netbase.cpp.
| bool Socks5 | ( | const std::string & | strDest, |
| uint16_t | port, | ||
| const ProxyCredentials * | auth, | ||
| const Sock & | socket | ||
| ) |
Connect to a specified destination service through an already connected SOCKS5 proxy.
| strDest | The destination fully-qualified domain name. |
| port | The destination port. |
| auth | The credentials with which to authenticate with the specified SOCKS5 proxy. |
| socket | The SOCKS5 proxy socket. |
Definition at line 334 of file netbase.cpp.
| std::vector<CNetAddr> WrappedGetAddrInfo | ( | const std::string & | name, |
| bool | allow_lookup | ||
| ) |
Wrapper for getaddrinfo(3).
Do not use directly: call Lookup/LookupHost/LookupNumeric/LookupSubNet.
Definition at line 37 of file netbase.cpp.
Socket factory.
Defaults to CreateSockTCP(), but can be overridden by unit tests.
Definition at line 502 of file netbase.cpp.
|
static |
| bool fNameLookup |
Definition at line 29 of file netbase.cpp.
| DNSLookupFn g_dns_lookup |
Definition at line 79 of file netbase.cpp.
| ReachableNets g_reachable_nets |
Definition at line 35 of file netbase.cpp.
| int nConnectTimeout |
Definition at line 28 of file netbase.cpp.
1.8.14