diff options
author | Roger Dingledine <arma@torproject.org> | 2005-05-14 01:11:45 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-05-14 01:11:45 +0000 |
commit | b92a77b1d221a8f060696b9567f9386841db2174 (patch) | |
tree | 2d8a728fad0353ab58361c23dcaeab8c9a7ce76c | |
parent | 7fa595443135dc17ce474529b9792bef84a16d2a (diff) | |
download | tor-b92a77b1d221a8f060696b9567f9386841db2174.tar.gz tor-b92a77b1d221a8f060696b9567f9386841db2174.zip |
move the periodic buffer shrinking interval from 3 mins to 1 min
svn:r4204
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 ************/ |