From 75fc6df848c3052f4e895f961091217b51cebf73 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Mon, 13 Aug 2001 17:09:42 +0000 Subject: [PATCH] Redefined ap_http_method(r) to ap_os_http_method(r) for NetWare so that we can appropriately recontruct the URL in ap_contruct_url() based on a secure or unsecure socket. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@90139 13f79535-47bb-0310-9956-ffa450edef68 --- src/include/httpd.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/include/httpd.h b/src/include/httpd.h index 7f11a0cac8e..48f5a6bb044 100644 --- a/src/include/httpd.h +++ b/src/include/httpd.h @@ -141,7 +141,11 @@ extern "C" { #define DEFAULT_HTTP_PORT 80 #define DEFAULT_HTTPS_PORT 443 #define ap_is_default_port(port,r) ((port) == ap_default_port(r)) +#ifdef NETWARE +#define ap_http_method(r) ap_os_http_method(r) +#else #define ap_http_method(r) "http" +#endif #define ap_default_port(r) DEFAULT_HTTP_PORT /* --------- Default user name and group name running standalone ---------- */ -- 2.47.2