diff options
author | Nick Mathewson <nickm@torproject.org> | 2007-02-08 22:08:04 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2007-02-08 22:08:04 +0000 |
commit | 76f61da37ba6443712b212a747ce8ee56218dcec (patch) | |
tree | 577a531842c23846a201a41826780e286e6b1d39 /src | |
parent | e00a1cbf16d04f8c66320e599ae383753f590f09 (diff) | |
download | tor-76f61da37ba6443712b212a747ce8ee56218dcec.tar tor-76f61da37ba6443712b212a747ce8ee56218dcec.tar.gz |
r11727@catbus: nickm | 2007-02-08 17:07:50 -0500
Explain that update_router_desciptor_downloads happens every 10 seconds in main.c, and we don't need to call it from directory.c
svn:r9534
Diffstat (limited to 'src')
-rw-r--r-- | src/or/directory.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index e181fa8fb..c0eaf48d5 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -349,11 +349,13 @@ connection_dir_download_networkstatus_failed(dir_connection_t *conn, static void connection_dir_download_routerdesc_failed(dir_connection_t *conn) { - /* Try again. No need to increment the failure count for routerdescs, since + /* No need to increment the failure count for routerdescs, since * it's not their fault. */ + + /* There's no need to call this here: we already call it every 10 seconds * + * (DESCRIPTOR_RETRY_INTERVAL) in main.c -NM */ /* update_router_descriptor_downloads(time(NULL)); */ (void) conn; - /* XXXX012 Why did the above get commented out? -NM */ } /** Helper for directory_initiate_command_(router|trusted_dir): send the @@ -2055,9 +2057,8 @@ dir_routerdesc_download_failed(smartlist_t *failed, int status_code) cp, (int)rs->n_download_failures); }); - /* XXX012 why did this get commented out too? -RD */ - /* Because we already call update_router_descriptor_downloads() - * every 10 seconds (DESCRIPTOR_RETRY_INTERVAL) in main.c -NM */ + /* There's no need to call this here: we already call it every 10 seconds * + * (DESCRIPTOR_RETRY_INTERVAL) in main.c -NM */ /* update_router_descriptor_downloads(time(NULL)); */ } |