- Mar 21, 2004
-
-
Mads Toftum authored
Fixed for english and .xml.de - still missing for other charsets. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103062 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
build time (MAXLINE). PR: 27793 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103060 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 20, 2004
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103058 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103057 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103055 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
The code was truncating the parameters for all NLM level commands. Needed to make sure that all of the parameters are being passed to the argv parser. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103052 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 19, 2004
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103051 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Reviewed by: Kess git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103050 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103045 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103041 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103040 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Jacques Clar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103035 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
Submitted by: Michael Corcoran <mcorcoran warpsolutions.com> Reviewed by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103030 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
Fix starvation issue on listening sockets where a short-lived connection on a rarely-accessed listening socket will cause a child to hold the accept mutex and block out new connections until another connection arrives on that rarely-accessed listening socket. With Apache 2.x there is no performance concern about enabling the logic for platforms which don't need it, so it is enabled everywhere except for Win32. [Jeff Trawick] (already in 2.0.49, propagating to mirrors now) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103029 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
locks on some platforms. crashes seen on Sparc when the integer copied out of the database was not aligned properly also, sizeof(int) not necessarily sizeof(apr_size_t), so that could be a concern; we copy in sizeof(apr_size_t field) so we should copy out sizeof(apr_size_t field) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103027 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 18, 2004
-
-
Martin Kraemer authored
(these were passed through uncached until now): This needed additional checks for CacheMinFileSize and CacheMaxFileSize after the response has completed. That means that we are checking at two places now: -> when the C-L is known, we check before we cache -> when it is unknown we check "on-the-way" for CacheMaxFileSize, and after caching completion for CacheMinFileSize We now compare the actual size of the cached copy against the C-L header, and discard it if the two don't match. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103026 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 17, 2004
-
-
Madhusudan Mathihalli authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103015 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103013 13f79535-47bb-0310-9956-ffa450edef68
-
Madhusudan Mathihalli authored
Otherwise, ab may dump core (calloc fails) when a arbitrarily huge value is used. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103011 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
Remove the OMIT_DELONCLOSE #ifdef since this should happen automatically with the apr_temp_dir_get() function. Submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103007 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
Add a terminate function that gets called on atexit() so that NetWare has the chance to pause the screen to view the output before the screen is destroyed. Submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103005 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103004 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
Submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103003 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
Submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103002 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Jacques Clar authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103000 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
Submitted by: Guenter Knauf <eflash@gmx.net> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102998 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 16, 2004
-
-
Jeff Trawick authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102997 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102992 13f79535-47bb-0310-9956-ffa450edef68
-
Jean-Jacques Clar authored
On NetWare using a concurrency higher than 64 is segfaulting because of FD_SETSIZE as a value of 64. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102990 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102986 13f79535-47bb-0310-9956-ffa450edef68
-
Bradley Nicholes authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102984 13f79535-47bb-0310-9956-ffa450edef68
-
Erik Abele authored
with a quality value in their Accept: lines Submitted by: Jeff Trawick b) fixed a typo and reformulated a passage in the german version of the EnableExceptionHook docs git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102982 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Submitted by: Sascha Kersken <sk lingoworld.de> git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102980 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Submitted by: Jeff Trawick git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102979 13f79535-47bb-0310-9956-ffa450edef68
-
- Mar 15, 2004
-
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102977 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
Move existing Netware docs and links on ThreadStackSize to mpm_common git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102976 13f79535-47bb-0310-9956-ffa450edef68
-
Jeff Trawick authored
WorkerStackSize as made obvious by: Brad Nicholes git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102975 13f79535-47bb-0310-9956-ffa450edef68
-
Joe Orton authored
LTLIBRARY_SOURCES. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102973 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102971 13f79535-47bb-0310-9956-ffa450edef68
-
Andre Malo authored
Reviewed by: Kess git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@102970 13f79535-47bb-0310-9956-ffa450edef68
-