]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
move StatusFetchPeriod to 15 minutes so it's within bounds by default
authorRoger Dingledine <arma@torproject.org>
Wed, 1 Dec 2004 04:27:11 +0000 (04:27 +0000)
committerRoger Dingledine <arma@torproject.org>
Wed, 1 Dec 2004 04:27:11 +0000 (04:27 +0000)
svn:r3055

src/or/config.c

index f02f18cc3e80dc49c9d24aa91545a14e35f1e287..8047723c357d799b804e04f867fe38e5178af74b 100644 (file)
@@ -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),