Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 87142 invoked from network); 3 Apr 2011 21:37:45 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Apr 2011 21:37:45 -0000 Received: (qmail 92061 invoked by uid 500); 3 Apr 2011 21:37:45 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 91868 invoked by uid 500); 3 Apr 2011 21:37:44 -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 91861 invoked by uid 99); 3 Apr 2011 21:37:44 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Apr 2011 21:37:44 +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; Sun, 03 Apr 2011 21:37:41 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id D121B2388980; Sun, 3 Apr 2011 21:37:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1088421 - /httpd/httpd/trunk/modules/proxy/mod_proxy.h Date: Sun, 03 Apr 2011 21:37:20 -0000 To: cvs@httpd.apache.org From: fuankg@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110403213720.D121B2388980@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: fuankg Date: Sun Apr 3 21:37:20 2011 New Revision: 1088421 URL: http://svn.apache.org/viewvc?rev=1088421&view=rev Log: Fixed only some proxy prototype formats. Function names must follow the *_DECLARE() in the same line regardless how long the function names are! Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.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=1088421&r1=1088420&r2=1088421&view=diff ============================================================================== --- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original) +++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sun Apr 3 21:37:20 2011 @@ -597,7 +597,9 @@ PROXY_DECLARE(char *) ap_proxy_define_wo * @param i index into shm * @return APR_SUCCESS or error code */ -PROXY_DECLARE(apr_status_t) ap_proxy_share_worker(proxy_worker *worker, proxy_worker_shared *shm, int i); +PROXY_DECLARE(apr_status_t) ap_proxy_share_worker(proxy_worker *worker, + proxy_worker_shared *shm, + int i); /** * Initialize the worker by setting up worker connection pool and mutex @@ -664,8 +666,8 @@ PROXY_DECLARE(apr_status_t) ap_proxy_sha * @return APR_SUCCESS or error code */ PROXY_DECLARE(apr_status_t) ap_proxy_initialize_balancer(proxy_balancer *balancer, - server_rec *s, - apr_pool_t *p); + server_rec *s, + apr_pool_t *p); /** * Get the most suitable worker and/or balancer for the request @@ -827,9 +829,9 @@ PROXY_DECLARE(void) ap_proxy_backend_bro * @return APR_SUCCESS if all buckets could be transformed APR_EGENERAL * otherwise */ -PROXY_DECLARE(apr_status_t) -ap_proxy_buckets_lifetime_transform(request_rec *r, apr_bucket_brigade *from, - apr_bucket_brigade *to); +PROXY_DECLARE(apr_status_t) ap_proxy_buckets_lifetime_transform(request_rec *r, + apr_bucket_brigade *from, + apr_bucket_brigade *to); /** * Return a hash based on the passed string * @param str string to produce hash from @@ -868,7 +870,8 @@ PROXY_DECLARE(char *) ap_proxy_parse_wst * @param conf config * @return APR_SUCCESS if all goes well */ -PROXY_DECLARE(apr_status_t) ap_proxy_sync_balancer(proxy_balancer *b, server_rec *s, +PROXY_DECLARE(apr_status_t) ap_proxy_sync_balancer(proxy_balancer *b, + server_rec *s, proxy_server_conf *conf); @@ -879,7 +882,8 @@ PROXY_DECLARE(apr_status_t) ap_proxy_syn * @param dconf per-dir config or NULL * @return DECLINED, DONE or OK if matched */ -PROXY_DECLARE(int) ap_proxy_trans_match(request_rec *r, struct proxy_alias *ent, +PROXY_DECLARE(int) ap_proxy_trans_match(request_rec *r, + struct proxy_alias *ent, proxy_dir_conf *dconf); #define PROXY_LBMETHOD "proxylbmethod"