From e11207af62349a0fa8052fde30b07e544f2951ac Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Wed, 28 Nov 2001 04:24:07 +0000 Subject: [PATCH] remove setting of ap::{http::method,default::port} r->notes. these notes are unused, they handled by hooks. PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92210 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/ssl_engine_kernel.c | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/modules/ssl/ssl_engine_kernel.c b/modules/ssl/ssl_engine_kernel.c index 14d1cd6fe3..c5a5dc8af4 100644 --- a/modules/ssl/ssl_engine_kernel.c +++ b/modules/ssl/ssl_engine_kernel.c @@ -185,14 +185,7 @@ int ssl_hook_ReadReq(request_rec *r) */ if (strEQn(r->uri, "/mod_ssl:", 9)) r->handler = "mod_ssl:content-handler"; - if (ssl != NULL) { - apr_table_setn(r->notes, "ap::http::method", "https"); - apr_table_setn(r->notes, "ap::default::port", "443"); - } - else { - apr_table_setn(r->notes, "ap::http::method", NULL); - apr_table_setn(r->notes, "ap::default::port", NULL); - } + return DECLINED; } -- 2.40.0