Skip to content
  1. Feb 05, 2002
  2. Feb 03, 2002
  3. Jan 31, 2002
  4. Jan 28, 2002
  5. Jan 25, 2002
  6. Jan 22, 2002
  7. Jan 19, 2002
    • Justin Erenkrantz's avatar
      Input filtering prototype change: Socket blocking type should be · b700eac1
      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/modules/ssl@92928 13f79535-47bb-0310-9956-ffa450edef68
      b700eac1
  8. Jan 18, 2002
  9. Jan 17, 2002
  10. Jan 11, 2002
  11. Jan 10, 2002
  12. Jan 09, 2002
  13. Dec 29, 2001
  14. Dec 02, 2001
  15. Dec 01, 2001
    • Doug MacEachern's avatar
      remove churn_output() function and calls to it. · 9fd7fc40
      Doug MacEachern authored
      when SSL needs to flush (e.g. during SSL_accept()) it will call BIO_flush()
      which will trigger a call to bio_bucket_ctrl() -> BIO_bucket_flush().
      so we only need to flush the output ourselves if we receive an EOS or
      FLUSH bucket.
      
      BIO_bucket_flush() and churn_output() had been turning up near the top
      of the profile with gprof.  churn_output() of course has now vanished
      and BIO_bucket_flush() has dropped, being called far less than before.
      
      PR:
      Obtained from:
      Submitted by:
      Reviewed by:
      
      
      git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@92271 13f79535-47bb-0310-9956-ffa450edef68
      9fd7fc40
  16. Nov 29, 2001
  17. Nov 28, 2001