From: Nick Mathewson Date: Tue, 23 Sep 2014 17:04:22 +0000 (-0400) Subject: Send long URLs when requesting ordinary server descriptors too. X-Git-Tag: tor-0.2.6.3-alpha~119^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6523eff9b3b5e06521da010e238b4cd23ed24e82;p=thirdparty%2Ftor.git Send long URLs when requesting ordinary server descriptors too. --- diff --git a/src/or/routerlist.c b/src/or/routerlist.c index ec9e801ef2..e0a55d898f 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -4369,7 +4369,10 @@ max_dl_per_request(const or_options_t *options, int purpose) { int max = 96; if (purpose == DIR_PURPOSE_FETCH_MICRODESC) { - max = options->TunnelDirConns ? 1000 : 92; + max = 92; + } + if (options->TunnelDirConns) { + max = 1000; } return max; }