1. 06 Sep, 2002 1 commit
  2. 05 Sep, 2002 1 commit
  3. 04 Sep, 2002 1 commit
    • Brian Pane's avatar
      Added optional support for caching streamed responses in mod_cache. · 6f34fa90
      Brian Pane authored
      Notes:
        * I've created a new config directive CacheMaxStreamingBuffer,
          to set the maximum amount of data that mod_cache will buffer
          per request if it hasn't yet seen an EOS.  The default is
          zero, which preserves the original behavior: cache only if
          the response has a known content-length or all the content
          is available in the first brigade passed to the CACHE_IN filter.
        * A big block of code in cache_in_filter() got wrapped in an
          if-statement in this change.  To make the diff more readable,
          I'm committing without indentation changes; a second commit
          will include (only) the indentation update.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96631 13f79535-47bb-0310-9956-ffa450edef68
      6f34fa90
  4. 03 Sep, 2002 2 commits
  5. 01 Sep, 2002 2 commits
  6. 30 Aug, 2002 2 commits
  7. 29 Aug, 2002 2 commits
  8. 28 Aug, 2002 3 commits
  9. 27 Aug, 2002 1 commit
    • Paul J. Reder's avatar
      · e9c725f5
      Paul J. Reder authored
      Remove CacheOn config directive since it is set but never checked.
      No sense wasting cycles on unused code. Besides, the only truly
      bug free code is deleted code. :)   [Paul J. Reder]
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96548 13f79535-47bb-0310-9956-ffa450edef68
      e9c725f5
  10. 26 Aug, 2002 3 commits
  11. 24 Aug, 2002 1 commit
  12. 23 Aug, 2002 2 commits
  13. 21 Aug, 2002 4 commits
  14. 20 Aug, 2002 1 commit
  15. 19 Aug, 2002 1 commit
  16. 18 Aug, 2002 3 commits
  17. 09 Aug, 2002 3 commits
  18. 08 Aug, 2002 1 commit
  19. 07 Aug, 2002 1 commit
  20. 06 Aug, 2002 3 commits
  21. 01 Aug, 2002 1 commit
  22. 31 Jul, 2002 1 commit
    • Jeff Trawick's avatar
      Restore the ability to specify host names on Listen directives. · 86e02241
      Jeff Trawick authored
      We needed to compare on the value we pass to apr_sockaddr_info_get(),
      not the IP address string.  Sometimes this is an IP address string
      and sometimes it is a host name.  Otherwise, on the second pass
      through this code we won't find the existing listen_rec for a Listen
      directive which had a host name, and we'll create a new listen_rec
      and try to bind again to the same addr/port.
      
      PR:                  11030
      Helped immensely by: David Shane Holden <dpejesh@yahoo.com>,
                           who debugged it and submitted a patch which
                           showed the problem; a much simpler change was
                           committed though
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96258 13f79535-47bb-0310-9956-ffa450edef68
      86e02241