Skip to content
  1. Dec 28, 2001
    • 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. Dec 26, 2001
  3. Dec 22, 2001
  4. Dec 21, 2001
  5. Dec 18, 2001
  6. Nov 30, 2001
  7. Nov 28, 2001
  8. Nov 26, 2001
  9. Nov 17, 2001
    • 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. Nov 16, 2001
  11. Nov 14, 2001
  12. Nov 12, 2001
  13. Nov 11, 2001
  14. Nov 10, 2001
  15. Oct 31, 2001
  16. Oct 29, 2001
  17. Oct 26, 2001
  18. Oct 23, 2001
  19. Oct 18, 2001
  20. Oct 17, 2001
    • 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