mirror of
https://github.com/apache/httpd.git
synced 2025-08-05 16:55:50 +03:00
Ah, I didn't see that churn is only used on input - rename the function
to match churn_output. =) Yes, I'm slowly working on fixing mod_ssl... git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91289 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -190,7 +190,7 @@ static apr_status_t churn_output(SSLFilterRec *ctx)
|
||||
#define bio_is_renegotiating(bio) \
|
||||
(((int)BIO_get_callback_arg(bio)) == SSL_ST_RENEGOTIATE)
|
||||
|
||||
static apr_status_t churn(SSLFilterRec *pRec,
|
||||
static apr_status_t churn_input(SSLFilterRec *pRec,
|
||||
ap_input_mode_t eMode, apr_off_t *readbytes)
|
||||
{
|
||||
conn_rec *c = pRec->pInputFilter->c;
|
||||
@@ -388,7 +388,7 @@ static apr_status_t ssl_io_filter_Input(ap_filter_t *f,
|
||||
}
|
||||
|
||||
/* churn the state machine */
|
||||
ret = churn(pRec, eMode, readbytes);
|
||||
ret = churn_input(pRec, eMode, readbytes);
|
||||
if (ret != APR_SUCCESS)
|
||||
return ret;
|
||||
|
||||
|
Reference in New Issue
Block a user