aboutsummaryrefslogtreecommitdiff
path: root/src/or/directory.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2016-11-07 09:38:49 -0500
committerNick Mathewson <nickm@torproject.org>2016-11-07 11:01:20 -0500
commit667ba776b1d91c8d1229319be88191008975d6eb (patch)
treef48a8927f2351a5523cae94b852af4b69a699d6b /src/or/directory.c
parente4b793fe41fc09cc1f7753cfe90b74095a49a34f (diff)
downloadtor-667ba776b1d91c8d1229319be88191008975d6eb.tar.gz
tor-667ba776b1d91c8d1229319be88191008975d6eb.zip
Adjust download schedules per teor's #20534 recommendataions
Diffstat (limited to 'src/or/directory.c')
-rw-r--r--src/or/directory.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c
index 5fc15724cc..02f14387ad 100644
--- a/src/or/directory.c
+++ b/src/or/directory.c
@@ -3798,7 +3798,7 @@ next_random_exponential_delay(int delay, int max_delay)
int max_increment;
if (delay)
- max_increment = delay; /* no more than double. */
+ max_increment = delay * 4; /* no more than quintuple. */
else
max_increment = 1; /* we're always willing to slow down a little. */