From b92a77b1d221a8f060696b9567f9386841db2174 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 14 May 2005 01:11:45 +0000 Subject: [PATCH] move the periodic buffer shrinking interval from 3 mins to 1 min svn:r4204 --- src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/main.c b/src/or/main.c index 821ff210d5..df3d9d9fc1 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -102,7 +102,7 @@ static int nt_service_is_stopped(void); #endif #define CHECK_DESCRIPTOR_INTERVAL 60 /* one minute */ -#define BUF_SHRINK_INTERVAL 180 /* three minutes */ +#define BUF_SHRINK_INTERVAL 60 /* one minute */ #define TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT (20*60) /* 20 minutes */ /********* END VARIABLES ************/