]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Rename outvar to follow _out convention.
authorNick Mathewson <nickm@torproject.org>
Tue, 23 Apr 2019 18:14:17 +0000 (14:14 -0400)
committerNick Mathewson <nickm@torproject.org>
Tue, 23 Apr 2019 18:14:17 +0000 (14:14 -0400)
src/feature/hs/hs_common.c
src/feature/hs/hs_common.h

index 11efe078ae16ea04dd8f2af7af75b64f3491de36..d4736c2862e454dec9046b1a51b7515c4c29cbb3 100644 (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;
index fc0c39f94f704d0a8974ffdcdf60c03896327a00..3009780d90f355d6533ae8d3f9e8c1d4c4193f5d 100644 (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,