diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-10-03 14:38:53 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2017-10-03 14:41:20 +0300 |
commit | 5352785d0caec23f753ae7fcab4449b03f5643b8 (patch) | |
tree | abb5e756a3a1b77af2869b1faff18570216b6426 /src/or/entrynodes.h | |
parent | f2231306ba58cc5d9a5addb41eb7f287e3802746 (diff) | |
download | tor-5352785d0caec23f753ae7fcab4449b03f5643b8.tar.gz tor-5352785d0caec23f753ae7fcab4449b03f5643b8.zip |
entrynodes: Error msg for missing guard descs is now more informative.
Diffstat (limited to 'src/or/entrynodes.h')
-rw-r--r-- | src/or/entrynodes.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/or/entrynodes.h b/src/or/entrynodes.h index d049a88cda..ca9fb489e6 100644 --- a/src/or/entrynodes.h +++ b/src/or/entrynodes.h @@ -572,8 +572,11 @@ 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(void); -char *guard_selection_get_dir_info_status_str(guard_selection_t *gs); +char *entry_guards_get_dir_info_status_str(int using_mds, + int num_present, int num_usable); +char *guard_selection_get_dir_info_status_str(guard_selection_t *gs, + int using_mds, + int num_present, int num_usable); void entry_guards_free_all(void); |