From ff9c3c006f717c7ae1135416e100078b793e664c Mon Sep 17 00:00:00 2001 From: Karsten Loesing Date: Mon, 4 Aug 2008 22:42:27 +0000 Subject: Remove dead code that was left from marking HiddenService(Exclude)Nodes obsolete in task 754. svn:r16401 --- src/or/rendservice.c | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) (limited to 'src/or') diff --git a/src/or/rendservice.c b/src/or/rendservice.c index c745a0eb4..61736f5e0 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1199,12 +1199,11 @@ rend_services_introduce(void) rend_service_t *service; rend_intro_point_t *intro; int changed, prev_intro_nodes; - smartlist_t *intro_routers, *exclude_routers; + smartlist_t *intro_routers; time_t now; or_options_t *options = get_options(); intro_routers = smartlist_create(); - exclude_routers = smartlist_create(); now = time(NULL); for (i=0; i < smartlist_len(rend_service_list); ++i) { @@ -1272,13 +1271,12 @@ rend_services_introduce(void) /* Remember how many introduction circuits we started with. */ prev_intro_nodes = smartlist_len(service->intro_nodes); - smartlist_add_all(exclude_routers, intro_routers); /* The directory is now here. Pick three ORs as intro points. */ for (j=prev_intro_nodes; j < NUM_INTRO_POINTS; ++j) { router_crn_flags_t flags = CRN_NEED_UPTIME; if (get_options()->_AllowInvalid & ALLOW_INVALID_INTRODUCTION) flags |= CRN_ALLOW_INVALID; - router = router_choose_random_node(NULL, exclude_routers, + router = router_choose_random_node(NULL, intro_routers, options->ExcludeNodes, flags); if (!router) { log_warn(LD_REND, @@ -1288,7 +1286,6 @@ rend_services_introduce(void) } changed = 1; smartlist_add(intro_routers, router); - smartlist_add(exclude_routers, router); intro = tor_malloc_zero(sizeof(rend_intro_point_t)); intro->extend_info = extend_info_from_router(router); if (service->descriptor_version == 2) { @@ -1300,9 +1297,6 @@ rend_services_introduce(void) router->nickname, service->service_id); } - /* Reset exclude_routers, for the next time around the loop. */ - smartlist_clear(exclude_routers); - /* If there's no need to launch new circuits, stop here. */ if (!changed) continue; @@ -1318,7 +1312,6 @@ rend_services_introduce(void) } } smartlist_free(intro_routers); - smartlist_free(exclude_routers); } /** Regenerate and upload rendezvous service descriptors for all -- cgit v1.2.3