From 7f47aa1ba81f7a6e2ba444ad4b473d7b0a066154 Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Fri, 13 Aug 2004 23:16:50 +0000 Subject: [PATCH] Fix the parameter list for the scheme_handler ap_proxy_connect_handler() so that it matches the prototype declared for the scheme_handler hook. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104650 13f79535-47bb-0310-9956-ffa450edef68 --- modules/proxy/proxy_connect.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/proxy/proxy_connect.c b/modules/proxy/proxy_connect.c index fae03dc773..a6d9ee44c4 100644 --- a/modules/proxy/proxy_connect.c +++ b/modules/proxy/proxy_connect.c @@ -23,7 +23,8 @@ module AP_MODULE_DECLARE_DATA proxy_connect_module; int ap_proxy_connect_canon(request_rec *r, char *url); -int ap_proxy_connect_handler(request_rec *r, proxy_server_conf *conf, +int ap_proxy_connect_handler(request_rec *r, proxy_worker *worker, + proxy_server_conf *conf, char *url, const char *proxyname, apr_port_t proxyport); @@ -77,7 +78,8 @@ int ap_proxy_connect_canon(request_rec *r, char *url) } /* CONNECT handler */ -int ap_proxy_connect_handler(request_rec *r, proxy_server_conf *conf, +int ap_proxy_connect_handler(request_rec *r, proxy_worker *worker, + proxy_server_conf *conf, char *url, const char *proxyname, apr_port_t proxyport) { -- 2.40.0