From: Roger Dingledine Date: Wed, 1 Dec 2004 04:27:11 +0000 (+0000) Subject: move StatusFetchPeriod to 15 minutes so it's within bounds by default X-Git-Tag: tor-0.0.9rc5~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=82f3ebf195b96df32757f2ea9f2e457762c04941;p=thirdparty%2Ftor.git move StatusFetchPeriod to 15 minutes so it's within bounds by default svn:r3055 --- 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),