1. 20 Jan, 2002 1 commit
  2. 19 Jan, 2002 1 commit
    • Justin Erenkrantz's avatar
      Input filtering prototype change: Socket blocking type should be · 15a3230e
      Justin Erenkrantz authored
      separate from the input filter mode type.
      
      We also no longer look at readbytes to determine the method of
      filter operation.  This makes the use of filters more obvious and
      allows a wider range of options for input filters modes.
      
      To start with, the new input filter modes are:
      
      AP_MODE_READBYTES (no more than *readbytes returned)
      AP_MODE_GETLINE (old *readbytes == 0 case)
      AP_MODE_EATCRLF (old AP_MODE_PEEK)
      AP_MODE_SPECULATIVE (will be used in a future ap_getline rewrite)
      AP_MODE_EXHAUSTIVE (old *readbytes == -1 case)
      AP_MODE_INIT (special case for NNTP over SSL)
      
      The block parameter is an apr_read_type_e: APR_BLOCK_READ, APR_NONBLOCK_READ
      
      This also allows cleanup of mod_ssl's handling in the getline case.
      
      Reviewed by:	Ryan Bloom (concept), Greg Stein (concept)
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92928 13f79535-47bb-0310-9956-ffa450edef68
      15a3230e
  3. 18 Jan, 2002 3 commits
  4. 17 Jan, 2002 3 commits
  5. 16 Jan, 2002 1 commit
  6. 14 Jan, 2002 1 commit
  7. 13 Jan, 2002 1 commit
  8. 12 Jan, 2002 1 commit
  9. 11 Jan, 2002 4 commits
  10. 10 Jan, 2002 6 commits
  11. 09 Jan, 2002 1 commit
  12. 08 Jan, 2002 3 commits
  13. 06 Jan, 2002 1 commit
  14. 04 Jan, 2002 2 commits
  15. 03 Jan, 2002 1 commit
  16. 02 Jan, 2002 1 commit
  17. 31 Dec, 2001 4 commits
  18. 30 Dec, 2001 2 commits
  19. 29 Dec, 2001 1 commit
  20. 28 Dec, 2001 1 commit
  21. 27 Dec, 2001 1 commit
    • Aaron Bannert's avatar
      Two fixes in one: · ffadbf50
      Aaron Bannert authored
      - No longer calls exit() when the secret fails to initialize, instead
        post_config just returns !OK and lets the server bail out.
      
      - No longer fails on DSOs -- since we load-unload-reload DSOs we lose
        any static memory that was initialized during the first load.
        This patch allows us to simply pass on the first call to post_config,
        and then do the initialization in the second call.
      
      Tested to work on Linux from an IE5.0 client.
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92630 13f79535-47bb-0310-9956-ffa450edef68
      ffadbf50