diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-01-15 11:57:49 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-01-16 07:48:17 -0500 |
commit | 6ba4b5e5da9089a061ed64c0e172e72f71c11e75 (patch) | |
tree | ed703d5cb00a8d1ab2b08ddb7f94bb68cf40ead1 /src/feature/dirclient/dirclient_modes.h | |
parent | 8d1f31190e12d337ef37c5ba541b195d72dfd663 (diff) | |
download | tor-6ba4b5e5da9089a061ed64c0e172e72f71c11e75.tar.gz tor-6ba4b5e5da9089a061ed64c0e172e72f71c11e75.zip |
Rename dirclient_modes.h identifiers to start with dirclient_
This is an automated commit, generated by this command:
./scripts/maint/rename_c_identifier.py \
directory_must_use_begindir dirclient_must_use_begindir \
directory_fetches_from_authorities dirclient_fetches_from_authorities \
directory_fetches_dir_info_early dirclient_fetches_dir_info_early \
directory_fetches_dir_info_later dirclient_fetches_dir_info_later \
directory_too_idle_to_fetch_descriptors dirclient_too_idle_to_fetch_descriptors
Diffstat (limited to 'src/feature/dirclient/dirclient_modes.h')
-rw-r--r-- | src/feature/dirclient/dirclient_modes.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/feature/dirclient/dirclient_modes.h b/src/feature/dirclient/dirclient_modes.h index f8ff74b6c1..c402207724 100644 --- a/src/feature/dirclient/dirclient_modes.h +++ b/src/feature/dirclient/dirclient_modes.h @@ -14,11 +14,11 @@ struct or_options_t; -int directory_must_use_begindir(const or_options_t *options); -int directory_fetches_from_authorities(const struct or_options_t *options); -int directory_fetches_dir_info_early(const struct or_options_t *options); -int directory_fetches_dir_info_later(const struct or_options_t *options); -int directory_too_idle_to_fetch_descriptors(const struct or_options_t *options, +int dirclient_must_use_begindir(const or_options_t *options); +int dirclient_fetches_from_authorities(const struct or_options_t *options); +int dirclient_fetches_dir_info_early(const struct or_options_t *options); +int dirclient_fetches_dir_info_later(const struct or_options_t *options); +int dirclient_too_idle_to_fetch_descriptors(const struct or_options_t *options, time_t now); #endif /* !defined(TOR_FEATURE_DIRCLIENT_DIRCLIENT_MODES_H) */ |