[or-cvs] lower the minimum required number of fd"s to 1000, so we can

arma at seul.org arma at seul.org
Sun Apr 9 10:28:03 UTC 2006


Update of /home2/or/cvsroot/tor/src/or
In directory moria:/home/arma/work/onion/cvs/tor/src/or

Modified Files:
	config.c 
Log Message:
lower the minimum required number of fd's to 1000, so we can
have some overhead for valgrind on linux, where the default
ulimit -n is 1024.


Index: config.c
===================================================================
RCS file: /home2/or/cvsroot/tor/src/or/config.c,v
retrieving revision 1.552
retrieving revision 1.553
diff -u -p -d -r1.552 -r1.553
--- config.c	8 Apr 2006 21:48:14 -0000	1.552
+++ config.c	9 Apr 2006 10:28:00 -0000	1.553
@@ -139,7 +139,7 @@ static config_var_t _option_vars[] = {
   VAR("CircuitBuildTimeout", INTERVAL, CircuitBuildTimeout,  "1 minute"),
   VAR("CircuitIdleTimeout",  INTERVAL, CircuitIdleTimeout,   "1 hour"),
   VAR("ClientOnly",          BOOL,     ClientOnly,           "0"),
-  VAR("ConnLimit",           UINT,     ConnLimit,            "1024"),
+  VAR("ConnLimit",           UINT,     ConnLimit,            "1000"),
   VAR("ContactInfo",         STRING,   ContactInfo,          NULL),
   VAR("ControlListenAddress",LINELIST, ControlListenAddress, NULL),
   VAR("ControlPort",         UINT,     ControlPort,          "0"),



More information about the tor-commits mailing list