diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-09-23 18:05:14 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-09-23 18:05:14 +0000 |
commit | f995edd5169294af37365c0e3fc62d9a76718512 (patch) | |
tree | 2e40d053ada3181b216f1b66797e3b17f4b2dc7f /src/or/main.c | |
parent | 90504803393cfee080e32b2a5fee44b411b57aaa (diff) | |
download | tor-f995edd5169294af37365c0e3fc62d9a76718512.tar.gz tor-f995edd5169294af37365c0e3fc62d9a76718512.zip |
Fix at least one overzealous download bug. (tor_malloc_zero new local_routerstatus_t objs); add a pile of logs back in; probe every 10sec; never autolaunch on failure. Let us see if this works better.
svn:r5125
Diffstat (limited to 'src/or/main.c')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index 869424e967..b39d2c3b37 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -95,7 +95,7 @@ static char* nt_strerror(uint32_t errnum); #define FORCE_REGENERATE_DESCRIPTOR_INTERVAL 18*60*60 /* 18 hours */ #define CHECK_DESCRIPTOR_INTERVAL 60 /* one minute */ #define BUF_SHRINK_INTERVAL 60 /* one minute */ -#define DESCRIPTOR_RETRY_INTERVAL 60 +#define DESCRIPTOR_RETRY_INTERVAL 10 #define DESCRIPTOR_FAILURE_RESET_INTERVAL 60*60 #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60) /* 20 minutes */ |