You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@hyperreal.org on 1999/05/21 19:10:41 UTC

cvs commit: apache-1.3/src/include httpd.h

stoddard    99/05/21 10:10:41

  Modified:    src/include httpd.h
  Log:
  Bump HARD_SERVER_LIMIT to 1500 for WIN32 only
  PR: 3815
  
  Revision  Changes    Path
  1.278     +4 -0      apache-1.3/src/include/httpd.h
  
  Index: httpd.h
  ===================================================================
  RCS file: /home/cvs/apache-1.3/src/include/httpd.h,v
  retrieving revision 1.277
  retrieving revision 1.278
  diff -u -r1.277 -r1.278
  --- httpd.h	1999/05/21 12:16:17	1.277
  +++ httpd.h	1999/05/21 17:10:40	1.278
  @@ -306,7 +306,11 @@
    * the overhead.
    */
   #ifndef HARD_SERVER_LIMIT
  +#ifdef WIN32
  +#define HARD_SERVER_LIMIT 1500
  +#else
   #define HARD_SERVER_LIMIT 256
  +#endif
   #endif
   
   /*