summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2017-03-01 15:04:15 -0500
committerNick Mathewson <nickm@torproject.org>2017-03-01 15:04:15 -0500
commit4ed142ae9bb42f741b3626f83f89bc3a39af6a33 (patch)
tree8e39d9698c86f8455d0bd9a82cfd7a12df630081
parent92944a65beebdc1391cfbcf698d0b4e9e54a7c70 (diff)
parent5298ab59170be74aed20e04e5378ec66eef6476e (diff)
downloadtor-4ed142ae9bb42f741b3626f83f89bc3a39af6a33.tar.gz
tor-4ed142ae9bb42f741b3626f83f89bc3a39af6a33.zip
Merge branch 'maint-0.3.0' into release-0.3.0tor-0.3.0.4-rc
-rw-r--r--src/or/entrynodes.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c
index 729e4b0391..c3c576c812 100644
--- a/src/or/entrynodes.c
+++ b/src/or/entrynodes.c
@@ -3365,7 +3365,14 @@ guard_selection_have_enough_dir_info_to_build_circuits(guard_selection_t *gs)
* guards in our list, since these are the guards that we typically use for
* circuits. */
num_primary_to_check = get_n_primary_guards_to_use(GUARD_USAGE_TRAFFIC);
- num_primary_to_check++;
+ /*
+ We had added this to try to guarantee that we'd not normally try a guard
+ without a descriptor, even if we didn't use the first guard. But it led
+ to problems with the chutney bridges+ipv6-min test. A better solution is
+ needed.
+
+ num_primary_to_check++;
+ */
SMARTLIST_FOREACH_BEGIN(gs->primary_entry_guards, entry_guard_t *, guard) {
entry_guard_consider_retry(guard);