diff options
author | David Goulet <dgoulet@torproject.org> | 2020-06-30 13:46:53 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-06-30 13:48:22 -0400 |
commit | 2ac2ba4e2c67a5c3266656c6ad525eb2c056da79 (patch) | |
tree | 1514f752b14f5551d9094b9b564d5b1b2d14e5b9 /src/feature/nodelist/nodelist.h | |
parent | 7a6e1f2491094fbf705e2ef4b3fd770faf48f1b7 (diff) | |
download | tor-2ac2ba4e2c67a5c3266656c6ad525eb2c056da79.tar.gz tor-2ac2ba4e2c67a5c3266656c6ad525eb2c056da79.zip |
node: Rename addrs_in_same_network_family()
New name reflects that the function is only used to compare router addresses
in order to learn if they are in the same network.
The network check is /16 and /32 respectively for IPv4 and IPv6.
Related to #40009
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/feature/nodelist/nodelist.h')
-rw-r--r-- | src/feature/nodelist/nodelist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/nodelist/nodelist.h b/src/feature/nodelist/nodelist.h index 826d1b957a..06cd7916ff 100644 --- a/src/feature/nodelist/nodelist.h +++ b/src/feature/nodelist/nodelist.h @@ -128,7 +128,7 @@ int node_is_unreliable(const node_t *router, int need_uptime, int router_exit_policy_all_nodes_reject(const tor_addr_t *addr, uint16_t port, int need_uptime); void router_set_status(const char *digest, int up); -int addrs_in_same_network_family(const tor_addr_t *a1, +int router_addrs_in_same_network(const tor_addr_t *a1, const tor_addr_t *a2); /** router_have_minimum_dir_info tests to see if we have enough |