Skip to content

Commit

Permalink
entrynodes: Better naming for dir info check functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
asn-d6 committed Oct 3, 2017
1 parent d891fad commit f7306b1
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
7 changes: 4 additions & 3 deletions src/or/entrynodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -3446,7 +3446,7 @@ guards_retry_optimistic(const or_options_t *options)
* the genreal descriptor information <b>using_mds</b>, <b>num_present</b> and
* <b>num_usable</b> to improve the error message. */
char *
guard_selection_get_dir_info_status_str(guard_selection_t *gs,
guard_selection_get_err_str_if_dir_info_missing(guard_selection_t *gs,
int using_mds,
int num_present, int num_usable)
{
Expand Down Expand Up @@ -3492,10 +3492,11 @@ guard_selection_get_dir_info_status_str(guard_selection_t *gs,
/** As guard_selection_have_enough_dir_info_to_build_circuits, but uses
* the default guard selection. */
char *
entry_guards_get_dir_info_status_str(int using_mds,
entry_guards_get_err_str_if_dir_info_missing(int using_mds,
int num_present, int num_usable)
{
return guard_selection_get_dir_info_status_str(get_guard_selection_info(),
return guard_selection_get_err_str_if_dir_info_missing(
get_guard_selection_info(),
using_mds,
num_present, num_usable);
}
Expand Down
4 changes: 2 additions & 2 deletions src/or/entrynodes.h
Original file line number Diff line number Diff line change
Expand Up @@ -572,9 +572,9 @@ int getinfo_helper_entry_guards(control_connection_t *conn,
int entries_known_but_down(const or_options_t *options);
void entries_retry_all(const or_options_t *options);

char *entry_guards_get_dir_info_status_str(int using_mds,
char *entry_guards_get_err_str_if_dir_info_missing(int using_mds,
int num_present, int num_usable);
char *guard_selection_get_dir_info_status_str(guard_selection_t *gs,
char *guard_selection_get_err_str_if_dir_info_missing(guard_selection_t *gs,
int using_mds,
int num_present, int num_usable);

Expand Down
2 changes: 1 addition & 1 deletion src/or/nodelist.c
Original file line number Diff line number Diff line change
Expand Up @@ -2325,7 +2325,7 @@ update_router_have_minimum_dir_info(void)
}

{ /* Check entry guard dirinfo status */
char *guard_error = entry_guards_get_dir_info_status_str(using_md,
char *guard_error = entry_guards_get_err_str_if_dir_info_missing(using_md,
num_present,
num_usable);
if (guard_error) {
Expand Down
5 changes: 3 additions & 2 deletions src/test/test_entrynodes.c
Original file line number Diff line number Diff line change
Expand Up @@ -1643,7 +1643,8 @@ test_entry_guard_manage_primary(void *arg)
{
/* Check that we have all required dirinfo for the primaries (that's done
* in big_fake_network_setup()) */
char *dir_info_str = guard_selection_get_dir_info_status_str(gs, 0, 0, 0);
char *dir_info_str =
guard_selection_get_err_str_if_dir_info_missing(gs, 0, 0, 0);
tt_assert(!dir_info_str);

/* Now artificially remove the first primary's descriptor and re-check */
Expand All @@ -1652,7 +1653,7 @@ test_entry_guard_manage_primary(void *arg)
/* Change the first primary's identity digest so that the mocked functions
* can't find its descriptor */
memset(first_primary->identity, 9, sizeof(first_primary->identity));
dir_info_str = guard_selection_get_dir_info_status_str(gs, 1, 2, 3);
dir_info_str =guard_selection_get_err_str_if_dir_info_missing(gs, 1, 2, 3);
tt_str_op(dir_info_str, OP_EQ,
"We're missing descriptors for 1/2 of our primary entry guards "
"(total microdescriptors: 2/3).");
Expand Down

0 comments on commit f7306b1

Please sign in to comment.