aboutsummaryrefslogtreecommitdiff
path: root/contrib/epee/src/net_utils_base.cpp
Commit message (Collapse)AuthorAgeFilesLines
* protocol: drop peers that don't reply to queriesmoneromooo2020-12-061-8/+6
|
* keep only the last seen node on a given host in the white listmoneromooo2020-12-041-0/+33
|
* Add IPv6 supportThomas Winget2019-07-311-0/+13
| | | | | | | | | | | | | | | | | | | new cli options (RPC ones also apply to wallet): --p2p-bind-ipv6-address (default = "::") --p2p-bind-port-ipv6 (default same as ipv4 port for given nettype) --rpc-bind-ipv6-address (default = "::1") --p2p-use-ipv6 (default false) --rpc-use-ipv6 (default false) --p2p-require-ipv4 (default true, if ipv4 bind fails and this is true, will not continue even if ipv6 bind successful) --rpc-require-ipv4 (default true, description as above) ipv6 addresses are to be specified as "[xx:xx:xx::xx:xx]:port" except in the cases of the cli args for bind address. For those the square braces can be omitted.
* allow blocking whole subnetsmoneromooo-monero2019-07-161-0/+18
|
* Adding initial support for broadcasting transactions over TorLee Clagett2019-01-281-16/+26
| | | | | | | | | - Support for ".onion" in --add-exclusive-node and --add-peer - Add --anonymizing-proxy for outbound Tor connections - Add --anonymous-inbounds for inbound Tor connections - Support for sharing ".onion" addresses over Tor connections - Support for broadcasting transactions received over RPC exclusively over Tor (else broadcast over public IP when Tor not enabled).
* Remove boost::lexical_cast for uuid and unused uuid functionLee Clagett2018-12-231-2/+4
|
* Removed a lot of unnecessary includesMartijn Otto2018-11-151-2/+0
|
* move includes around to lessen overall loadmoneromooo-monero2017-12-161-0/+30
|
* Upgrades to epee::net_utils::network_addressLee Clagett2017-10-051-0/+60
- internal nullptr checks - prevent modifications to network_address (shallow copy issues) - automagically works with any type containing interface functions - removed fnv1a hashing - ipv4_network_address now flattened with no base class