From: Doug MacEachern Date: Thu, 30 Aug 2001 05:33:57 +0000 (+0000) Subject: dont block when handling non-ssl request X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fec658a96edb17a0cc5a29adee0490e3f86aa9e6;p=thirdparty%2Fapache%2Fhttpd.git dont block when handling non-ssl request git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@90802 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/mod_ssl.c b/mod_ssl.c index 470127ab94d..69febc46d72 100644 --- a/mod_ssl.c +++ b/mod_ssl.c @@ -391,7 +391,7 @@ int ssl_hook_process_connection(SSLFilterRec *pRec) APR_BRIGADE_INSERT_HEAD(pRec->pbbPendingInput, e); APR_BRIGADE_FOREACH(e, pRec->pbbInput) { - apr_bucket_read(e, &str, &len, APR_BLOCK_READ); + apr_bucket_read(e, &str, &len, APR_NONBLOCK_READ); if (len) { APR_BUCKET_REMOVE(e); APR_BRIGADE_INSERT_TAIL(pRec->pbbPendingInput, e);