summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nordberg <linus@torproject.org>2012-09-17 20:21:22 +0200
committerLinus Nordberg <linus@torproject.org>2012-09-17 22:01:58 +0200
commitbee1e46bd179b4085f47f3f3fc34db94e67e1c72 (patch)
treee40a9e11c74a050e7464dc86451fcd31a9f57462
parent5977da6c60bcde2dee97e443984da3e9a5808bb9 (diff)
downloadtor-bee1e46bd179b4085f47f3f3fc34db94e67e1c72.tar.gz
tor-bee1e46bd179b4085f47f3f3fc34db94e67e1c72.zip
Don't do reachability testing over IPv6 unless AuthDirPublishIPv6 is set.
This affects both directory authorities and bridge authoritites.
-rw-r--r--changes/bug68803
-rw-r--r--src/or/dirserv.c3
2 files changed, 5 insertions, 1 deletions
diff --git a/changes/bug6880 b/changes/bug6880
new file mode 100644
index 0000000000..c08a2d40de
--- /dev/null
+++ b/changes/bug6880
@@ -0,0 +1,3 @@
+ o Minor bugfixes:
+ - Don't do reachability testing over IPv6 unless
+ AuthDirPublishIPv6 is set. Fix for bug 6880.
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index a8f2fb9de0..d3556901ab 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -3415,7 +3415,8 @@ dirserv_single_reachability_test(time_t now, routerinfo_t *router)
router->cache_info.identity_digest);
/* Possible IPv6. */
- if (!tor_addr_is_null(&router->ipv6_addr)) {
+ if (get_options()->AuthDirHasIPv6Connectivity == 1 &&
+ !tor_addr_is_null(&router->ipv6_addr)) {
char addrstr[TOR_ADDR_BUF_LEN];
log_debug(LD_OR, "Testing reachability of %s at %s:%u.",
router->nickname,