mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
don't lie about bootstrap progress when clients use bridges
we were listing 50% as soon as we got a bridge's relay descriptor, even if we didn't have any consensus, certificates, etc yet.
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
o Minor bugfixes:
|
||||
- When clients use bridges, [...] Fixes bug 9922; bugfix on [...]
|
||||
|
||||
+3
-2
@@ -1639,8 +1639,9 @@ load_downloaded_routers(const char *body, smartlist_t *which,
|
||||
|
||||
added = router_load_routers_from_string(body, NULL, SAVED_NOWHERE, which,
|
||||
descriptor_digests, buf);
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
if (general)
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
return added;
|
||||
}
|
||||
|
||||
|
||||
+3
-2
@@ -1106,8 +1106,9 @@ connection_edge_process_relay_cell_not_open(
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_STATUS, 0);
|
||||
break;
|
||||
case DIR_PURPOSE_FETCH_SERVERDESC:
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
if (TO_DIR_CONN(dirconn)->router_purpose == ROUTER_PURPOSE_GENERAL)
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user