mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 13:13:44 +01:00
Merge remote-tracking branch 'public/bug9927' into maint-0.2.4
This commit is contained in:
commit
50fc8fb5c5
4
changes/bug9927
Normal file
4
changes/bug9927
Normal file
@ -0,0 +1,4 @@
|
||||
o Minor features:
|
||||
- Generate bootstrapping status update events correctly for fetching
|
||||
microdescriptors. Fixes bug 9927.
|
||||
|
@ -2111,6 +2111,8 @@ connection_dir_client_reached_eof(dir_connection_t *conn)
|
||||
/* Mark remaining ones as failed. */
|
||||
dir_microdesc_download_failed(which, status_code);
|
||||
}
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
SMARTLIST_FOREACH(which, char *, cp, tor_free(cp));
|
||||
smartlist_free(which);
|
||||
smartlist_free(mds);
|
||||
|
@ -1103,6 +1103,7 @@ connection_edge_process_relay_cell_not_open(
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_STATUS, 0);
|
||||
break;
|
||||
case DIR_PURPOSE_FETCH_SERVERDESC:
|
||||
case DIR_PURPOSE_FETCH_MICRODESC:
|
||||
control_event_bootstrap(BOOTSTRAP_STATUS_LOADING_DESCRIPTORS,
|
||||
count_loading_descriptors_progress());
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user