[tor-commits] [tor/master] Make populate_live_entry_guards() more smoothly testable.

nickm at torproject.org nickm at torproject.org
Wed Jul 16 13:34:43 UTC 2014


commit 71da44f159ae0a3b0d267673ab5a74b51a843dca
Author: George Kadianakis <desnacked at riseup.net>
Date:   Mon Jun 9 19:14:40 2014 +0100

    Make populate_live_entry_guards() more smoothly testable.
---
 src/or/entrynodes.c |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c
index 50138cd..d732791 100644
--- a/src/or/entrynodes.c
+++ b/src/or/entrynodes.c
@@ -999,6 +999,7 @@ choose_random_dirguard(dirinfo_type_t type)
    Return 1 if we should choose a guard right away. */
 static int
 populate_live_entry_guards(smartlist_t *live_entry_guards,
+                           const smartlist_t *all_entry_guards,
                            const node_t *chosen_exit,
                            dirinfo_type_t dirinfo_type,
                            int for_directory,
@@ -1011,13 +1012,13 @@ populate_live_entry_guards(smartlist_t *live_entry_guards,
   int retval = 0;
   int need_descriptor = !for_directory;
 
-  tor_assert(entry_guards);
+  tor_assert(all_entry_guards);
 
   if (chosen_exit) {
     nodelist_add_node_and_family(exit_family, chosen_exit);
   }
 
-  SMARTLIST_FOREACH_BEGIN(entry_guards, const entry_guard_t *, entry) {
+  SMARTLIST_FOREACH_BEGIN(all_entry_guards, const entry_guard_t *, entry) {
       const char *msg;
       node = entry_is_live(entry, need_uptime, need_capacity, 0,
                            need_descriptor, &msg);
@@ -1090,6 +1091,7 @@ choose_random_entry_impl(cpath_build_state_t *state, int for_directory,
   /* Populate the list of live entry guards so that we pick one of
      them. */
   retval = populate_live_entry_guards(live_entry_guards,
+                                      entry_guards,
                                       chosen_exit,
                                       dirinfo_type,
                                       for_directory,





More information about the tor-commits mailing list