diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-03-10 15:01:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-03-10 15:01:27 -0400 |
commit | db72479eea4b5bbd73d1fa33f4c9e4e4e2b99b04 (patch) | |
tree | b811ee202cffb78d6afcae0475810bf53e9ab41e /src/or/entrynodes.c | |
parent | cbf9e742368158b927249913b395b3796d847a92 (diff) | |
download | tor-db72479eea4b5bbd73d1fa33f4c9e4e4e2b99b04.tar.gz tor-db72479eea4b5bbd73d1fa33f4c9e4e4e2b99b04.zip |
Update ns downloads when we receive a bridge descriptor
This prevents long stalls when we're starting with a state file but
with no bridge descriptors. Fixes bug 9229. I believe this bug has
been present since 0.2.0.3-alpha.
Diffstat (limited to 'src/or/entrynodes.c')
-rw-r--r-- | src/or/entrynodes.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/or/entrynodes.c b/src/or/entrynodes.c index 2aa063cda4..59770fa658 100644 --- a/src/or/entrynodes.c +++ b/src/or/entrynodes.c @@ -2115,8 +2115,12 @@ learned_bridge_descriptor(routerinfo_t *ri, int from_cache) * our entry node list */ entry_guard_register_connect_status(ri->cache_info.identity_digest, 1, 0, now); - if (first) + if (first) { + /* XXXX apparently, this is never called. See bug #9229. */ routerlist_retry_directory_downloads(now); + } + + update_networkstatus_downloads(now); } } } |