summaryrefslogtreecommitdiff
path: root/src/or/rendservice.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-02-12 03:43:39 +0000
committerRoger Dingledine <arma@torproject.org>2006-02-12 03:43:39 +0000
commit3c4e68488b4f19e6cc042a678974f88d8693fb4c (patch)
tree1194a171314fc83c1a621938c76b5b9d4522cb27 /src/or/rendservice.c
parent940b0a4d2efbe64a7681dd857cd423b6eebe4154 (diff)
downloadtor-3c4e68488b4f19e6cc042a678974f88d8693fb4c.tar.gz
tor-3c4e68488b4f19e6cc042a678974f88d8693fb4c.zip
Clients now honor the "guard" flag in the router status when
picking entry guards, rather than looking at is_fast or is_stable. Now dirservers can change how they define it and clients will automatically use their new definition. svn:r5979
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r--src/or/rendservice.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c
index a9f9c9d1d8..7881d3ffcd 100644
--- a/src/or/rendservice.c
+++ b/src/or/rendservice.c
@@ -992,7 +992,7 @@ rend_services_introduce(void)
for (j=prev_intro_nodes; j < NUM_INTRO_POINTS; ++j) {
char *hex_digest;
router = router_choose_random_node(service->intro_prefer_nodes,
- service->intro_exclude_nodes, exclude_routers, 1, 0,
+ service->intro_exclude_nodes, exclude_routers, 1, 0, 0,
get_options()->_AllowUnverified & ALLOW_UNVERIFIED_INTRODUCTION,
0);
if (!router) {