From owner-freebsd-hackers Sat Dec 7 20:08:17 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id UAA24350 for hackers-outgoing; Sat, 7 Dec 1996 20:08:17 -0800 (PST) Received: from mailhub.aros.net (mailhub.aros.net [205.164.111.17]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id UAA24336 for ; Sat, 7 Dec 1996 20:08:12 -0800 (PST) Received: from fluffy.aros.net (fluffy.aros.net [205.164.111.2]) by mailhub.aros.net (8.7.6/Unknown) with ESMTP id VAA20742; Sat, 7 Dec 1996 21:08:07 -0700 (MST) Received: from fluffy.aros.net (localhost [127.0.0.1]) by fluffy.aros.net (8.7.6/8.6.12) with ESMTP id VAA07389; Sat, 7 Dec 1996 21:08:06 -0700 (MST) Message-Id: <199612080408.VAA07389@fluffy.aros.net> To: Ade Barkah cc: imb@scgt.oz.au (michael butler), jfesler@calweb.com, hackers@freebsd.org Subject: Re: Apache and huge numbers of IP's.. In-reply-to: Your message of "Sat, 07 Dec 1996 19:42:48 MST." <199612080242.TAA01291@hemi.com> Date: Sat, 07 Dec 1996 21:08:06 -0700 From: Dave Andersen Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk > > options "CHILD_MAX=512" > > options "OPEN_MAX=512" > > Is this sufficient ? You still have: > > #ifndef FD_SETSIZE > #define FD_SETSIZE 256 > #endif > > in /usr/include/sys/types.h. FD_SETSIZE ultimately limits the At the beginning of your program, before ALL other #includes, say: #define FD_SETSIZE 512 -Dave