From 6b1a2caf76e3ba09bbfaf119583c90610088fdea Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Mon, 23 Jan 2006 08:04:01 +0000 Subject: [PATCH] Return APR_EAGAIN instead of SSL_ERROR_WANT_READ from the mod_ssl filters; the httpd core and other modules' filters don't know what SSL_ERROR_* means. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-read-dev@371484 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_io.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/ssl/ssl_engine_io.c b/modules/ssl/ssl_engine_io.c index 0093e3b95ea..42d6eaeeaeb 100644 --- a/modules/ssl/ssl_engine_io.c +++ b/modules/ssl/ssl_engine_io.c @@ -870,6 +870,8 @@ static apr_status_t ssl_io_filter_error(ap_filter_t *f, bucket = HTTP_ON_HTTPS_PORT_BUCKET(f->c->bucket_alloc); break; + case SSL_ERROR_WANT_READ: + return APR_EAGAIN; default: return status; } -- 2.47.2