Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C00567BF9 for ; Sat, 3 Dec 2011 16:45:53 +0000 (UTC) Received: (qmail 72664 invoked by uid 500); 3 Dec 2011 16:45:53 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 72615 invoked by uid 500); 3 Dec 2011 16:45:53 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 72608 invoked by uid 99); 3 Dec 2011 16:45:53 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Dec 2011 16:45:53 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 03 Dec 2011 16:45:51 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 858712388993; Sat, 3 Dec 2011 16:45:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1209947 - in /httpd/httpd/trunk/modules/proxy: mod_proxy.h proxy_util.h Date: Sat, 03 Dec 2011 16:45:29 -0000 To: cvs@httpd.apache.org From: minfrin@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20111203164529.858712388993@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: minfrin Date: Sat Dec 3 16:45:29 2011 New Revision: 1209947 URL: http://svn.apache.org/viewvc?rev=1209947&view=rev Log: mod_proxy: Move ap_proxy_strmatch_path and ap_proxy_strmatch_domain out of the public API. Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h httpd/httpd/trunk/modules/proxy/proxy_util.h Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.h?rev=1209947&r1=1209946&r2=1209947&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original) +++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sat Dec 3 16:45:29 2011 @@ -886,12 +886,7 @@ PROXY_DECLARE(int) ap_proxy_trans_match( */ int ap_proxy_lb_workers(void); -/* For proxy_util */ extern module PROXY_DECLARE_DATA proxy_module; -extern int PROXY_DECLARE_DATA proxy_lb_workers; -extern const apr_strmatch_pattern PROXY_DECLARE_DATA *ap_proxy_strmatch_path; -extern const apr_strmatch_pattern PROXY_DECLARE_DATA *ap_proxy_strmatch_domain; - #endif /*MOD_PROXY_H*/ /** @} */ Modified: httpd/httpd/trunk/modules/proxy/proxy_util.h URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/proxy_util.h?rev=1209947&r1=1209946&r2=1209947&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/proxy_util.h (original) +++ httpd/httpd/trunk/modules/proxy/proxy_util.h Sat Dec 3 16:45:29 2011 @@ -31,6 +31,10 @@ PROXY_DECLARE(int) ap_proxy_is_domainnam PROXY_DECLARE(int) ap_proxy_is_hostname(struct dirconn_entry *This, apr_pool_t *p); PROXY_DECLARE(int) ap_proxy_is_word(struct dirconn_entry *This, apr_pool_t *p); +extern int PROXY_DECLARE_DATA proxy_lb_workers; +extern const apr_strmatch_pattern PROXY_DECLARE_DATA *ap_proxy_strmatch_path; +extern const apr_strmatch_pattern PROXY_DECLARE_DATA *ap_proxy_strmatch_domain; + /** * Register optional functions declared within proxy_util.c. */