]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Postpone fetches based on should_delay_dir_fetch(), not DisableNetwork
authorNick Mathewson <nickm@torproject.org>
Tue, 20 May 2014 20:57:47 +0000 (16:57 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 23 May 2014 15:22:35 +0000 (11:22 -0400)
Without this fix, when running with bridges, we would try fetching
directory info far too early, and have up to a 60 second delay if we
started with bridge descriptors available.

Fixes bug 11965. Fix on 0.2.3.6-alpha, arma thinks.

changes/bug11965 [new file with mode: 0644]
src/or/main.c

diff --git a/changes/bug11965 b/changes/bug11965
new file mode 100644 (file)
index 0000000..a3bfd87
--- /dev/null
@@ -0,0 +1,6 @@
+  o Minor bugfixes:
+
+    - Avoid another 60-second delay when starting Tor in a
+      pluggable-transport-using configuration when we already have
+      cached descriptors for our bridges. Fixes bug 11965; bugfix on
+      0.2.3.6-alpha.
index 025b5192b5fd0de95b6843f5d267830e751bccc1..6f6066a9364bab414bfc779efa9c6cd4ba7b6eb7 100644 (file)
@@ -1231,7 +1231,8 @@ run_scheduled_events(time_t now)
       router_upload_dir_desc_to_dirservers(0);
   }
 
-  if (!options->DisableNetwork && time_to_try_getting_descriptors < now) {
+  if (!should_delay_dir_fetches(options, NULL) &&
+      time_to_try_getting_descriptors < now) {
     update_all_descriptor_downloads(now);
     update_extrainfo_downloads(now);
     if (router_have_minimum_dir_info())
@@ -1461,7 +1462,8 @@ run_scheduled_events(time_t now)
  * documents? */
 #define networkstatus_dl_check_interval(o) ((o)->TestingTorNetwork ? 1 : 60)
 
-  if (time_to_download_networkstatus < now && !options->DisableNetwork) {
+  if (!should_delay_dir_fetches(options, NULL) &&
+      time_to_download_networkstatus < now) {
     time_to_download_networkstatus =
       now + networkstatus_dl_check_interval(options);
     update_networkstatus_downloads(now);