mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
Merge branch 'tor-github/pr/698'
This commit is contained in:
commit
57d33b5786
4
changes/bug24338
Normal file
4
changes/bug24338
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Minor bugfixes (dirauth, ipv6):
|
||||||
|
- If we are a durauth with IPv6 and are marking relays as running, mark
|
||||||
|
ourselves as reachable on IPv6. Fixes bug 24338; bugfix on 0.4.0.2-alpha.
|
||||||
|
Patch by Neel Chauhan
|
@ -531,6 +531,20 @@ dirserv_set_router_is_running(routerinfo_t *router, time_t now)
|
|||||||
node->is_running = answer;
|
node->is_running = answer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Check <b>node</b> and <b>ri</b> on whether or not we should publish a
|
||||||
|
* relay's IPv6 addresses. */
|
||||||
|
static int
|
||||||
|
should_publish_node_ipv6(const node_t *node, const routerinfo_t *ri,
|
||||||
|
time_t now)
|
||||||
|
{
|
||||||
|
const or_options_t *options = get_options();
|
||||||
|
|
||||||
|
return options->AuthDirHasIPv6Connectivity == 1 &&
|
||||||
|
!tor_addr_is_null(&ri->ipv6_addr) &&
|
||||||
|
((node->last_reachable6 >= now - REACHABLE_TIMEOUT) ||
|
||||||
|
router_is_me(ri));
|
||||||
|
}
|
||||||
|
|
||||||
/** Extract status information from <b>ri</b> and from other authority
|
/** Extract status information from <b>ri</b> and from other authority
|
||||||
* functions and store it in <b>rs</b>. <b>rs</b> is zeroed out before it is
|
* functions and store it in <b>rs</b>. <b>rs</b> is zeroed out before it is
|
||||||
* set.
|
* set.
|
||||||
@ -597,9 +611,7 @@ set_routerstatus_from_routerinfo(routerstatus_t *rs,
|
|||||||
rs->is_staledesc =
|
rs->is_staledesc =
|
||||||
(ri->cache_info.published_on + DESC_IS_STALE_INTERVAL) < now;
|
(ri->cache_info.published_on + DESC_IS_STALE_INTERVAL) < now;
|
||||||
|
|
||||||
if (options->AuthDirHasIPv6Connectivity == 1 &&
|
if (should_publish_node_ipv6(node, ri, now)) {
|
||||||
!tor_addr_is_null(&ri->ipv6_addr) &&
|
|
||||||
node->last_reachable6 >= now - REACHABLE_TIMEOUT) {
|
|
||||||
/* We're configured as having IPv6 connectivity. There's an IPv6
|
/* We're configured as having IPv6 connectivity. There's an IPv6
|
||||||
OR port and it's reachable so copy it to the routerstatus. */
|
OR port and it's reachable so copy it to the routerstatus. */
|
||||||
tor_addr_copy(&rs->ipv6_addr, &ri->ipv6_addr);
|
tor_addr_copy(&rs->ipv6_addr, &ri->ipv6_addr);
|
||||||
|
Loading…
Reference in New Issue
Block a user