mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-23 14:40:51 +01:00
Don't do reachability testing over IPv6 unless AuthDirPublishIPv6 is set.
This affects both directory authorities and bridge authoritites.
This commit is contained in:
parent
5977da6c60
commit
bee1e46bd1
2 changed files with 5 additions and 1 deletions
3
changes/bug6880
Normal file
3
changes/bug6880
Normal file
|
@ -0,0 +1,3 @@
|
|||
o Minor bugfixes:
|
||||
- Don't do reachability testing over IPv6 unless
|
||||
AuthDirPublishIPv6 is set. Fix for bug 6880.
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue