diff options
author | Neel Chauhan <neel@neelc.org> | 2019-04-19 08:33:00 -0400 |
---|---|---|
committer | Neel Chauhan <neel@neelc.org> | 2019-04-19 08:33:00 -0400 |
commit | 943559b18066e126652450df4402dca74ba1baa0 (patch) | |
tree | 2de15885e3c0f6783d541dbaf4b56f448d484f2b /src/feature/hs/hs_common.h | |
parent | 011307dd5fa608739456b98d259b013286320b91 (diff) | |
download | tor-943559b18066e126652450df4402dca74ba1baa0.tar.gz tor-943559b18066e126652450df4402dca74ba1baa0.zip |
Make rate_limited and is_rate_limited a bool
Diffstat (limited to 'src/feature/hs/hs_common.h')
-rw-r--r-- | src/feature/hs/hs_common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/feature/hs/hs_common.h b/src/feature/hs/hs_common.h index f96fc8beb7..fc0c39f94f 100644 --- a/src/feature/hs/hs_common.h +++ b/src/feature/hs/hs_common.h @@ -241,7 +241,7 @@ void hs_get_responsible_hsdirs(const struct ed25519_public_key_t *blinded_pk, int use_second_hsdir_index, int for_fetching, smartlist_t *responsible_dirs); routerstatus_t *hs_pick_hsdir(smartlist_t *responsible_dirs, - const char *req_key_str, int *is_rate_limited); + const char *req_key_str, bool *is_rate_limited); time_t hs_hsdir_requery_period(const or_options_t *options); time_t hs_lookup_last_hid_serv_request(routerstatus_t *hs_dir, |