Rename outvar to follow _out convention.

This commit is contained in:
Nick Mathewson
2019-04-23 14:14:17 -04:00
parent 475ac11bc1
commit 8bea0c2fa3
2 changed files with 6 additions and 5 deletions
+4 -4
View File
@@ -1590,7 +1590,7 @@ hs_purge_last_hid_serv_requests(void)
* one that we should use to fetch a descriptor right now. Take into account
* previous failed attempts at fetching this descriptor from HSDirs using the
* string identifier <b>req_key_str</b>. We return whether we are rate limited
* into *<b>is_rate_limited</b> if it is not NULL.
* into *<b>is_rate_limited_out</b> if it is not NULL.
*
* Steals ownership of <b>responsible_dirs</b>.
*
@@ -1598,7 +1598,7 @@ hs_purge_last_hid_serv_requests(void)
* NULL if no HSDirs are worth trying right now. */
routerstatus_t *
hs_pick_hsdir(smartlist_t *responsible_dirs, const char *req_key_str,
bool *is_rate_limited)
bool *is_rate_limited_out)
{
smartlist_t *usable_responsible_dirs = smartlist_new();
const or_options_t *options = get_options();
@@ -1665,8 +1665,8 @@ hs_pick_hsdir(smartlist_t *responsible_dirs, const char *req_key_str,
hs_lookup_last_hid_serv_request(hs_dir, req_key_str, now, 1);
}
if (is_rate_limited != NULL) {
*is_rate_limited = rate_limited;
if (is_rate_limited_out != NULL) {
*is_rate_limited_out = rate_limited;
}
return hs_dir;
+2 -1
View File
@@ -241,7 +241,8 @@ 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, bool *is_rate_limited);
const char *req_key_str,
bool *is_rate_limited_out);
time_t hs_hsdir_requery_period(const or_options_t *options);
time_t hs_lookup_last_hid_serv_request(routerstatus_t *hs_dir,