]> granicus.if.org Git - apache/commit
remove churn_output() function and calls to it.
authorDoug MacEachern <dougm@apache.org>
Sat, 1 Dec 2001 02:11:04 +0000 (02:11 +0000)
committerDoug MacEachern <dougm@apache.org>
Sat, 1 Dec 2001 02:11:04 +0000 (02:11 +0000)
commit70d030984c32d7e18b6af1a211d04524c01248dd
tree204be97cd258e1f45e59fb31fbb55e0e86822cb0
parentb7f26548e49df4548f3e944e5af77b33f4bcf6d6
remove churn_output() function and calls to it.
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@92271 13f79535-47bb-0310-9956-ffa450edef68
modules/ssl/ssl_engine_io.c