Cool :) Just one note that's worth preserving in the archives. When you get into these kind of numbers, you start running out of spare TCP ports and have to start listening on multiple addresses.
On Thu, Jan 15, 2004 at 03:42:38PM -0000, [EMAIL PROTECTED] wrote: > gregames 2004/01/15 07:42:38 > > Modified: server/mpm/prefork prefork.c > Log: > bump MAX_SERVER_LIMIT by 10x (hoping to stay ahead of Moore's Law for a little > while) since the current limit is too small for at least one high end site. > > Submitted by: Colm MacCarthaigh [colm stdlib.net] > > Revision Changes Path > 1.287 +1 -1 httpd-2.0/server/mpm/prefork/prefork.c > > Index: prefork.c > =================================================================== > RCS file: /home/cvs/httpd-2.0/server/mpm/prefork/prefork.c,v > retrieving revision 1.286 > retrieving revision 1.287 > diff -u -d -b -u -r1.286 -r1.287 > --- prefork.c 1 Jan 2004 13:26:25 -0000 1.286 > +++ prefork.c 15 Jan 2004 15:42:38 -0000 1.287 > @@ -123,7 +123,7 @@ > * some sort of compile-time limit to help catch typos. > */ > #ifndef MAX_SERVER_LIMIT > -#define MAX_SERVER_LIMIT 20000 > +#define MAX_SERVER_LIMIT 200000 > #endif > > #ifndef HARD_THREAD_LIMIT > > > > -- Colm MacC�rthaigh Public Key: [EMAIL PROTECTED]
