]> granicus.if.org Git - apache/commitdiff
Fix the parameter list for the scheme_handler ap_proxy_connect_handler() so that...
authorBradley Nicholes <bnicholes@apache.org>
Fri, 13 Aug 2004 23:16:50 +0000 (23:16 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Fri, 13 Aug 2004 23:16:50 +0000 (23:16 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104650 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_connect.c

index fae03dc773707cb4faf8b6b2855d37178a9e8153..a6d9ee44c497f15f52c4ea93cce4fe269b138058 100644 (file)
@@ -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)
 {