tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a4c5b7d7421b9f02d479e4471b527ee3b9285d8c
parent 28c1b6047649dad62d269e6c2fde40f41cb9834a
Author: David Goulet <dgoulet@torproject.org>
Date:   Tue, 21 Jul 2020 15:15:06 -0400

Rename check_server_ports to check_and_prune_server_ports

This is an automated commit, generated by this command:

./scripts/maint/rename_c_identifier.py \
        check_server_ports check_and_prune_server_ports

Diffstat:
Msrc/feature/relay/relay_config.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/feature/relay/relay_config.c b/src/feature/relay/relay_config.c @@ -222,7 +222,7 @@ remove_duplicate_orports(smartlist_t *ports) * *<b>n_low_ports_out</b> to the number of sub-1024 ports we will be * binding, and warn if we may be unable to re-bind after hibernation. */ static int -check_server_ports(smartlist_t *ports, +check_and_prune_server_ports(smartlist_t *ports, const or_options_t *options, int *n_low_ports_out) { @@ -382,7 +382,7 @@ port_parse_ports_relay(or_options_t *options, goto err; } - if (check_server_ports(ports, options, &n_low_ports) < 0) { + if (check_and_prune_server_ports(ports, options, &n_low_ports) < 0) { *msg = tor_strdup("Misconfigured server ports"); goto err; }