You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2011/04/03 23:37:20 UTC

svn commit: r1088421 - /httpd/httpd/trunk/modules/proxy/mod_proxy.h

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"