commit | dd676173f038a2f2c49d5ac616769250798328b9 | [log] [tgz] |
---|---|---|
author | Willy TARREAU <willy@pcw.(none)> | Sun Mar 12 18:01:33 2006 +0100 |
committer | Willy TARREAU <willy@pcw.(none)> | Sun Mar 12 18:01:33 2006 +0100 |
tree | cf9da2b13dd37f4b6b10491118818b935a48be9a | |
parent | 203b0b624f9e943e5d66a5b1a2978d162c1af10f [diff] |
* automatically deduce ulimit-n from maxsock
diff --git a/haproxy.c b/haproxy.c index dd349e1..3bab3f9 100644 --- a/haproxy.c +++ b/haproxy.c
@@ -8206,6 +8206,9 @@ } /* ulimits */ + if (!global.rlimit_nofile) + global.rlimit_nofile = global.maxsock; + if (global.rlimit_nofile) { limit.rlim_cur = limit.rlim_max = global.rlimit_nofile; if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {