mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
add high trace level log messages for debugging buffering and write completion
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1510295 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -788,6 +788,8 @@ static apr_status_t ssl_filter_write(ap_filter_t *f,
|
||||
*/
|
||||
outctx->c->cs->sense = CONN_SENSE_WANT_READ;
|
||||
outctx->rc = APR_EAGAIN;
|
||||
ap_log_cerror(APLOG_MARK, APLOG_TRACE6, 0, outctx->c,
|
||||
"Want read during nonblocking write");
|
||||
}
|
||||
else if (ssl_err == SSL_ERROR_SYSCALL) {
|
||||
ap_log_cerror(APLOG_MARK, APLOG_INFO, outctx->rc, c, APLOGNO(01993)
|
||||
@ -1953,6 +1955,8 @@ void ssl_io_filter_init(conn_rec *c, request_rec *r, SSL *ssl)
|
||||
/* write is non blocking for the benefit of async mpm */
|
||||
if (c->cs) {
|
||||
BIO_set_nbio(filter_ctx->pbioWrite, 1);
|
||||
ap_log_cerror(APLOG_MARK, APLOG_TRACE6, 0, c,
|
||||
"Enabling non-blocking writes");
|
||||
}
|
||||
|
||||
ssl_io_input_add_filter(filter_ctx, c, r, ssl);
|
||||
|
Reference in New Issue
Block a user