]> granicus.if.org Git - apache/commitdiff
remove setting of ap::{http::method,default::port} r->notes.
authorDoug MacEachern <dougm@apache.org>
Wed, 28 Nov 2001 04:24:07 +0000 (04:24 +0000)
committerDoug MacEachern <dougm@apache.org>
Wed, 28 Nov 2001 04:24:07 +0000 (04:24 +0000)
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

index 14d1cd6fe3bd7fc0f203c4c3ff1e0f1e0863c22d..c5a5dc8af49362da1b06ec150fd2c738a3f4dab2 100644 (file)
@@ -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;
 }