aboutsummaryrefslogtreecommitdiff
path: root/src/or/main.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-01-30 19:31:39 +0000
committerRoger Dingledine <arma@torproject.org>2004-01-30 19:31:39 +0000
commitafdaff63ef6c81bdd7a1bec49b63e4571d5987b7 (patch)
tree945bbddf1e38464ffb8cd23a04f6eed6ad2a3725 /src/or/main.c
parentb42b16357f4d7e0306bdc98804d08527134f7969 (diff)
downloadtor-afdaff63ef6c81bdd7a1bec49b63e4571d5987b7.tar
tor-afdaff63ef6c81bdd7a1bec49b63e4571d5987b7.tar.gz
turn some knobs, add more debugging
svn:r1023
Diffstat (limited to 'src/or/main.c')
-rw-r--r--src/or/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/main.c b/src/or/main.c
index e8e5e7bfe..98a83e804 100644
--- a/src/or/main.c
+++ b/src/or/main.c
@@ -341,9 +341,9 @@ static void run_scheduled_events(time_t now) {
}
time_to_new_circuit = now + options.NewCircuitPeriod;
}
-#define CIRCUIT_MIN_BUILDING 2
+#define CIRCUIT_MIN_BUILDING 3
if(!circ && circuit_count_building() < CIRCUIT_MIN_BUILDING) {
- /* if there's no open circ, and less than 2 are on the way,
+ /* if there's no open circ, and less than 3 are on the way,
* go ahead and try another.
*/
circuit_launch_new();