mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-27 13:53:31 +01:00
Don't stop fetching descriptors when FetchUselessDescriptors is
set, even if we stop asking for circuits. Bugfix on 0.1.2.x; reported by tup and ioerror. svn:r12430
This commit is contained in:
parent
997c1e5e0d
commit
e12cf29960
@ -97,6 +97,9 @@ Changes in version 0.2.0.10-alpha - 2007-11-07
|
|||||||
o Minor bugfixes:
|
o Minor bugfixes:
|
||||||
- Refuse to start if both ORPort and UseBridges are set. Bugfix
|
- Refuse to start if both ORPort and UseBridges are set. Bugfix
|
||||||
on 0.2.0.x.
|
on 0.2.0.x.
|
||||||
|
- Don't stop fetching descriptors when FetchUselessDescriptors is
|
||||||
|
set, even if we stop asking for circuits. Bugfix on 0.1.2.x;
|
||||||
|
reported by tup and ioerror.
|
||||||
- Better log message on vote from unknown authority.
|
- Better log message on vote from unknown authority.
|
||||||
- Don't log "Launching 0 request for 0 router".
|
- Don't log "Launching 0 request for 0 router".
|
||||||
|
|
||||||
|
@ -3753,10 +3753,9 @@ update_consensus_router_descriptor_downloads(time_t now)
|
|||||||
int n_delayed=0, n_have=0, n_would_reject=0, n_wouldnt_use=0,
|
int n_delayed=0, n_have=0, n_would_reject=0, n_wouldnt_use=0,
|
||||||
n_inprogress=0, n_in_oldrouters=0;
|
n_inprogress=0, n_in_oldrouters=0;
|
||||||
|
|
||||||
if (!dirserver) {
|
if (!dirserver && !options->FetchUselessDescriptors &&
|
||||||
if (rep_hist_circbuilding_dormant(now))
|
rep_hist_circbuilding_dormant(now))
|
||||||
goto done;
|
goto done;
|
||||||
}
|
|
||||||
if (!consensus)
|
if (!consensus)
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user