diff options
author | teor <teor@riseup.net> | 2020-05-07 20:17:57 +1000 |
---|---|---|
committer | teor <teor@riseup.net> | 2020-05-07 20:17:57 +1000 |
commit | e1eecac88866fa66e9d77c251a31d85131f11aef (patch) | |
tree | 91f50591fdbe3be2f5b55acdac53a04d4a982402 /src/feature/nodelist/routerlist.h | |
parent | 74902c8aca96dda3178fac768223bcdb9a11f50c (diff) | |
download | tor-e1eecac88866fa66e9d77c251a31d85131f11aef.tar.gz tor-e1eecac88866fa66e9d77c251a31d85131f11aef.zip |
Replace several C identifiers.
This is an automated commit, generated by this command:
./scripts/maint/rename_c_identifier.py \
client_or_conn_should_skip_reachable_address_check router_or_conn_should_skip_reachable_address_check \
client_dir_conn_should_skip_reachable_address_check router_dir_conn_should_skip_reachable_address_check
Diffstat (limited to 'src/feature/nodelist/routerlist.h')
-rw-r--r-- | src/feature/nodelist/routerlist.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/nodelist/routerlist.h b/src/feature/nodelist/routerlist.h index 5256298d8a..401ce5e35a 100644 --- a/src/feature/nodelist/routerlist.h +++ b/src/feature/nodelist/routerlist.h @@ -50,10 +50,10 @@ typedef enum was_router_added_t { int router_reload_router_list(void); -int client_or_conn_should_skip_reachable_address_check( +int router_or_conn_should_skip_reachable_address_check( const or_options_t *options, int try_ip_pref); -int client_dir_conn_should_skip_reachable_address_check( +int router_dir_conn_should_skip_reachable_address_check( const or_options_t *options, int try_ip_pref); void router_reset_status_download_failures(void); |