]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Increased the HARD_SERVER_LIMIT for NetWare to 2048. NetWare
authorBradley Nicholes <bnicholes@apache.org>
Fri, 27 Apr 2001 16:16:06 +0000 (16:16 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 27 Apr 2001 16:16:06 +0000 (16:16 +0000)
is able to handle a large number of service request threads.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@88954 13f79535-47bb-0310-9956-ffa450edef68

src/include/httpd.h

index 411de5bc3c3302f5e447620cbb0545ca515e512d..af2b58f6babacbc4f327b69bb325739f2d71634e 100644 (file)
@@ -313,6 +313,8 @@ extern "C" {
 #ifndef HARD_SERVER_LIMIT
 #ifdef WIN32
 #define HARD_SERVER_LIMIT 1024
+#elif defined(NETWARE)
+#define HARD_SERVER_LIMIT 2048
 #else
 #define HARD_SERVER_LIMIT 256
 #endif