* automatically deduce ulimit-n from maxsock

This commit is contained in:
Willy TARREAU 2006-03-12 18:01:33 +01:00
parent 203b0b624f
commit dd676173f0

View File

@ -8206,6 +8206,9 @@ int main(int argc, char **argv) {
}
/* 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) {