[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] move StatusFetchPeriod to 15 minutes so it"s within bounds ...
- To: or-cvs@freehaven.net
- Subject: [or-cvs] move StatusFetchPeriod to 15 minutes so it"s within bounds ...
- From: arma@seul.org (Roger Dingledine)
- Date: Tue, 30 Nov 2004 23:27:14 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Tue, 30 Nov 2004 23:27:33 -0500
- Reply-to: or-dev@freehaven.net
- Sender: owner-or-cvs@freehaven.net
Update of /home2/or/cvsroot/tor/src/or
In directory moria.mit.edu:/home2/arma/work/onion/cvs/tor/src/or
Modified Files:
	config.c 
Log Message:
move StatusFetchPeriod to 15 minutes so it's within bounds by default
Index: config.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -d -r1.277 -r1.278
--- config.c	1 Dec 2004 03:48:13 -0000	1.277
+++ config.c	1 Dec 2004 04:27:11 -0000	1.278
@@ -159,7 +159,9 @@
   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),