mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
when we succeed at connecting to a helper that we've never connected
to before, mark all the previous helpers as up. This is handy if the network went away and then returned. svn:r5666
This commit is contained in:
parent
25fcb5fa9c
commit
f46c135fac
@ -1951,6 +1951,17 @@ helper_node_set_status(const char *digest, int succeeded)
|
|||||||
if (succeeded) {
|
if (succeeded) {
|
||||||
if (!helper->made_contact) {
|
if (!helper->made_contact) {
|
||||||
helper->made_contact = 1;
|
helper->made_contact = 1;
|
||||||
|
/* We've just added a new long-term helper node.
|
||||||
|
* Perhaps the network just came back? We should
|
||||||
|
* give our earlier helpers another try too. */
|
||||||
|
SMARTLIST_FOREACH(helper_nodes, helper_node_t *, h,
|
||||||
|
{
|
||||||
|
routerinfo_t *r = router_get_by_digest(h->identity);
|
||||||
|
h->down_since = 0;
|
||||||
|
if (r) r->is_running = 1;
|
||||||
|
if (h == helper)
|
||||||
|
break;
|
||||||
|
});
|
||||||
changed = 1;
|
changed = 1;
|
||||||
}
|
}
|
||||||
if (helper->down_since) {
|
if (helper->down_since) {
|
||||||
|
Loading…
Reference in New Issue
Block a user