From 4279cdca63821fceb0a8270b9f13cd7bd643b1ac Mon Sep 17 00:00:00 2001 From: Cliff Woolley Date: Tue, 11 Jun 2002 04:54:01 +0000 Subject: [PATCH] fix the infinite recursion problem with HTTP-on-the-HTTPS port. Reported by: Paul J. Reder Submitted by: Ryan Bloom git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95604 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_kernel.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index 97812e9ea9..c03832b31f 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -199,6 +199,13 @@ int ssl_hook_ReadReq(request_rec *r) thisurl, thisurl); apr_table_setn(r->notes, "error-notes", errmsg); + + /* Now that we have caught this error, forget it. we are done + * with using SSL on this request. + */ + sslconn->non_ssl_request = 0; + + return HTTP_BAD_REQUEST; } -- 2.50.1