Browse Source

hs: Rename num_rend_services()

Renamed to rend_num_services() so it is consistent with the legacy naming.

Signed-off-by: David Goulet <dgoulet@torproject.org>
David Goulet 6 years ago
parent
commit
4a8cf17897

+ 1 - 1
src/or/circuituse.c

@@ -1115,7 +1115,7 @@ needs_exit_circuits(time_t now, int *needs_uptime, int *needs_capacity)
 STATIC int
 needs_hs_server_circuits(int num_uptime_internal)
 {
-  return (num_rend_services() &&
+  return (rend_num_services() &&
           num_uptime_internal < SUFFICIENT_UPTIME_INTERNAL_HS_SERVERS &&
           router_have_consensus_path() != CONSENSUS_PATH_UNKNOWN);
 }

+ 3 - 3
src/or/hs_service.c

@@ -1864,7 +1864,7 @@ run_build_circuit_event(time_t now)
   }
 
   /* Run v2 check. */
-  if (num_rend_services() > 0) {
+  if (rend_num_services() > 0) {
     rend_consider_services_intro_points(now);
   }
 
@@ -2074,7 +2074,7 @@ run_upload_descriptor_event(time_t now)
 {
   /* v2 services use the same function for descriptor creation and upload so
    * we do everything here because the intro circuits were checked before. */
-  if (num_rend_services() > 0) {
+  if (rend_num_services() > 0) {
     rend_consider_services_upload(now);
     rend_consider_descriptor_republication();
   }
@@ -2605,7 +2605,7 @@ int
 hs_service_load_all_keys(void)
 {
   /* Load v2 service keys if we have v2. */
-  if (num_rend_services() != 0) {
+  if (rend_num_services() != 0) {
     if (rend_service_load_all_keys(NULL) < 0) {
       goto err;
     }

+ 1 - 1
src/or/rendservice.c

@@ -148,7 +148,7 @@ rend_service_escaped_dir(const struct rend_service_t *s)
 
 /** Return the number of rendezvous services we have configured. */
 int
-num_rend_services(void)
+rend_num_services(void)
 {
   if (!rend_service_list)
     return 0;

+ 1 - 1
src/or/rendservice.h

@@ -135,7 +135,7 @@ STATIC void rend_service_prune_list_impl_(void);
 
 #endif /* RENDSERVICE_PRIVATE */
 
-int num_rend_services(void);
+int rend_num_services(void);
 int rend_config_service(const config_line_t *line_,
                         const or_options_t *options,
                         hs_service_config_t *config);

+ 1 - 1
src/test/test_hs_config.c

@@ -453,7 +453,7 @@ test_staging_service_v3(void *arg)
   /* Ok, we have a service in our map! Registration went well. */
   tt_int_op(get_hs_service_staging_list_size(), OP_EQ, 1);
   /* Make sure we don't have a magic v2 service out of this. */
-  tt_int_op(num_rend_services(), OP_EQ, 0);
+  tt_int_op(rend_num_services(), OP_EQ, 0);
 
  done:
   hs_free_all();

+ 1 - 1
src/test/test_hs_service.c

@@ -279,7 +279,7 @@ test_load_keys(void *arg)
   tt_int_op(ret, OP_EQ, 0);
   /* This one should now be registered into the v2 list. */
   tt_int_op(get_hs_service_staging_list_size(), OP_EQ, 0);
-  tt_int_op(num_rend_services(), OP_EQ, 1);
+  tt_int_op(rend_num_services(), OP_EQ, 1);
 
   /* v3 service. */
   tor_asprintf(&conf, conf_fmt, hsdir_v3, HS_VERSION_THREE);