1. 28 Dec, 2001 1 commit
    • William A. Rowe Jr's avatar
      · 87baa8b6
      William A. Rowe Jr authored
        Normalize symbol exports for Win32/Netware to the httpd.exp reference.
        Diff tags pre_win_nw_syms/post_win_nw_syms for complete edit.
      
        Note I've corrected _SEVERAL_ badly declared symbols on Win32 into
        API_EXPORT_NONSTD flavors (e.g. those using (...) args).  This may,
        or may not, break binary compatibility depending on how those args
        are addressed, and if those functions were used.
      
        I've further tested by setting aside the .def file and rebuilding,
        and validated that our symbols list corresponds to the API_DECLARE()
        macros at this moment.
      
      Submitted by:	Thomas Eibner <thomas@stderr.net>
      Reviewed by:	Stoddard, Rowe
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92633 13f79535-47bb-0310-9956-ffa450edef68
      87baa8b6
  2. 26 Dec, 2001 1 commit
  3. 22 Dec, 2001 1 commit
  4. 21 Dec, 2001 2 commits
  5. 18 Dec, 2001 4 commits
  6. 30 Nov, 2001 4 commits
  7. 28 Nov, 2001 1 commit
  8. 26 Nov, 2001 2 commits
  9. 17 Nov, 2001 1 commit
    • William A. Rowe Jr's avatar
      · 9a217a32
      William A. Rowe Jr authored
        Correct mod_autoindex's test of the query string's requested ordering.
        This patch is a bit more paranoid than Kestutis's, but this is user
        supplied input, so a bit of paranoia is healthy.
      
      PR: 8771
      Submitted by:	Kestutis Kupciunas <kesha@soften.ktu.lt>
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92017 13f79535-47bb-0310-9956-ffa450edef68
      9a217a32
  10. 16 Nov, 2001 2 commits
  11. 14 Nov, 2001 1 commit
  12. 12 Nov, 2001 1 commit
  13. 11 Nov, 2001 1 commit
  14. 10 Nov, 2001 4 commits
  15. 31 Oct, 2001 1 commit
  16. 29 Oct, 2001 3 commits
  17. 26 Oct, 2001 5 commits
  18. 23 Oct, 2001 3 commits
  19. 18 Oct, 2001 1 commit
  20. 17 Oct, 2001 1 commit
    • Bill Stoddard's avatar
      Win32: The Apache Win32 developers generally recommend that · 7c2c106f
      Bill Stoddard authored
      MaxRequestsPerChild be set to 0 to prevent the child process
      from ever recycling. However, for those that do require a
      non-zero setting, this patch fixes a serious bug that can cause
      an apparent 'server-hang' condition where the server stops
      responding to requests for a period of time. Prior to this
      fix, when the child process handled MaxRequestsPerChild
      connnections, the child process would stop accepting new
      connections and begin allowing inactive threads to exit. The
      problem was that a new process would not be created to begin
      handling requests until the old process fully exited. The old
      process can take an indeterminate amount of time to exit because
      it may be sending large responses to clients connected over slow
      links, or it may have threads blocked in read awaiting requests
      (eg, one attack mode of the Nimda worm is to establish a
      connection to the server but not send an HTTP request. This
      connection will be timed out according to the setting of the
      Timeout directive, 300 seconds). This fix allows the new process
      to be immediately started and begin accepting requests when the
      old child process reaches MaxRequestsPerChild.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@91523 13f79535-47bb-0310-9956-ffa450edef68
      7c2c106f