[or-cvs] [tor/master 9/9] Extract the "do these routers have the same addr:orport" logic into a fn

nickm at torproject.org nickm at torproject.org
Wed Sep 15 02:17:39 UTC 2010


Author: Nick Mathewson <nickm at torproject.org>
Date: Tue, 14 Sep 2010 22:19:00 -0400
Subject: Extract the "do these routers have the same addr:orport" logic into a fn
Commit: f5b7e039f39d881fc8f48c2e6004e605ca0e24c1

---
 src/or/dirserv.c    |    2 +-
 src/or/routerlist.c |   10 ++++++++--
 src/or/routerlist.h |    1 +
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index b5c3373..cfee498 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -3136,7 +3136,7 @@ dirserv_should_launch_reachability_test(routerinfo_t *ri, routerinfo_t *ri_old)
     /* It just came out of hibernation; launch a reachability test */
     return 1;
   }
-  if (ri_old->addr != ri->addr || ri_old->or_port != ri->or_port) {
+  if (! routers_have_same_or_addr(ri, ri_old)) {
     /* Address or port changed; launch a reachability test */
     return 1;
   }
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 968d5a1..4cbb490 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -1257,6 +1257,13 @@ mark_all_trusteddirservers_up(void)
   router_dir_info_changed();
 }
 
+/** Return true iff r1 and r2 have the same address and OR port. */
+int
+routers_have_same_or_addr(const routerinfo_t *r1, const routerinfo_t *r2)
+{
+  return r1->addr == r2->addr && r1->or_port == r2->or_port;
+}
+
 /** Reset all internal variables used to count failed downloads of network
  * status objects. */
 void
@@ -3246,8 +3253,7 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg,
       log_debug(LD_DIR, "Replacing entry for router '%s/%s' [%s]",
                 router->nickname, old_router->nickname,
                 hex_str(id_digest,DIGEST_LEN));
-      if (router->addr == old_router->addr &&
-          router->or_port == old_router->or_port) {
+      if (routers_have_same_or_addr(router, old_router)) {
         /* these carry over when the address and orport are unchanged. */
         router->last_reachable = old_router->last_reachable;
         router->testing_since = old_router->testing_since;
diff --git a/src/or/routerlist.h b/src/or/routerlist.h
index d71a737..6ba8678 100644
--- a/src/or/routerlist.h
+++ b/src/or/routerlist.h
@@ -35,6 +35,7 @@ int router_get_my_share_of_directory_requests(double *v2_share_out,
 void router_reset_status_download_failures(void);
 void routerlist_add_family(smartlist_t *sl, routerinfo_t *router);
 int routers_in_same_family(routerinfo_t *r1, routerinfo_t *r2);
+int routers_have_same_or_addr(const routerinfo_t *r1, const routerinfo_t *r2);
 void add_nickname_list_to_smartlist(smartlist_t *sl, const char *list,
                                     int must_be_running);
 int router_nickname_is_in_list(routerinfo_t *router, const char *list);
-- 
1.7.1



More information about the tor-commits mailing list