diff options
author | Roger Dingledine <arma@torproject.org> | 2006-04-09 10:28:00 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-04-09 10:28:00 +0000 |
commit | ed38f46ebc0ab3e95578ffbbaff0ba9fdccf77dd (patch) | |
tree | 9bc2e5233c28f9b154c6b4a152b297f3c38113e9 | |
parent | b18d20ce32aa4d57d596344e65f04f89c0ba0f3e (diff) | |
download | tor-ed38f46ebc0ab3e95578ffbbaff0ba9fdccf77dd.tar.gz tor-ed38f46ebc0ab3e95578ffbbaff0ba9fdccf77dd.zip |
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.
svn:r6338
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 60bc653254..d4ba339926 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -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"), |