diff options
author | Roger Dingledine <arma@torproject.org> | 2004-12-01 04:27:11 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-12-01 04:27:11 +0000 |
commit | 82f3ebf195b96df32757f2ea9f2e457762c04941 (patch) | |
tree | aaa46650c80df4e09cb423ebe992859013b9ca08 | |
parent | ef04cfcbadcce6efa8a707511b5199507deda833 (diff) | |
download | tor-82f3ebf195b96df32757f2ea9f2e457762c04941.tar.gz tor-82f3ebf195b96df32757f2ea9f2e457762c04941.zip |
move StatusFetchPeriod to 15 minutes so it's within bounds by default
svn:r3055
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index f02f18cc3e..8047723c35 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -159,7 +159,9 @@ static config_var_t config_vars[] = { VAR("SocksPort", UINT, SocksPort, "9050"), VAR("SocksBindAddress", LINELIST, SocksBindAddress, NULL), VAR("SocksPolicy", LINELIST, SocksPolicy, NULL), - VAR("StatusFetchPeriod", INTERVAL, StatusFetchPeriod, "20 minutes"), +/* XXX as with dirfetchperiod, we want this to be 15 minutes for people + * with a dirport open, but higher for people without a dirport open. */ + VAR("StatusFetchPeriod", INTERVAL, StatusFetchPeriod, "15 minutes"), VAR("SysLog", LINELIST_S, OldLogOptions, NULL), OBSOLETE("TrafficShaping"), VAR("User", STRING, User, NULL), |