From: Roger Dingledine Date: Wed, 18 Aug 2004 20:34:43 +0000 (+0000) Subject: be more aggressive about building circuits when we have no X-Git-Tag: tor-0.0.8rc1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9504db8ce8ff297929cd743acbe5a4f26df8bbd3;p=thirdparty%2Ftor.git be more aggressive about building circuits when we have no open circuits svn:r2290 --- diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 717f327b83..9173bc09a0 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -315,8 +315,8 @@ void circuit_build_needed_circs(time_t now) { * want to be building at once, if there are no open general-purpose * circuits? */ -#define CIRCUIT_MIN_BUILDING_GENERAL 3 - /* if there's no open circ, and less than 3 are on the way, +#define CIRCUIT_MIN_BUILDING_GENERAL 5 + /* if there's no open circ, and less than 5 are on the way, * go ahead and try another. */ if(!circ && circuit_count_building(CIRCUIT_PURPOSE_C_GENERAL) < CIRCUIT_MIN_BUILDING_GENERAL) {