]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove the tabs from code.
authorMladen Turk <mturk@apache.org>
Wed, 25 Aug 2004 11:21:15 +0000 (11:21 +0000)
committerMladen Turk <mturk@apache.org>
Wed, 25 Aug 2004 11:21:15 +0000 (11:21 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@104797 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.h

index 995d688ec6f4d922edbe3b55edffaa154d703172..4cf9f83050850c2511c441cdb497c3d7549a1334 100644 (file)
@@ -87,16 +87,16 @@ enum enctype {
 #endif /*APR_CHARSET_EBCDIC*/
 
 /* default Max-Forwards header setting */
-#define DEFAULT_MAX_FORWARDS   10
+#define DEFAULT_MAX_FORWARDS    10
 
 /* static information about a remote proxy */
 struct proxy_remote {
-    const char *scheme;                /* the schemes handled by this proxy, or '*' */
-    const char *protocol;      /* the scheme used to talk to this proxy */
-    const char *hostname;      /* the hostname of this proxy */
-    apr_port_t  port;          /* the port for this proxy */
-    regex_t *regexp;           /* compiled regex (if any) for the remote */
-    int use_regex;             /* simple boolean. True if we have a regex pattern */
+    const char *scheme;     /* the schemes handled by this proxy, or '*' */
+    const char *protocol;   /* the scheme used to talk to this proxy */
+    const char *hostname;   /* the hostname of this proxy */
+    apr_port_t  port;       /* the port for this proxy */
+    regex_t *regexp;        /* compiled regex (if any) for the remote */
+    int use_regex;          /* simple boolean. True if we have a regex pattern */
 };
 
 struct proxy_alias {
@@ -126,8 +126,8 @@ typedef struct {
     apr_array_header_t *allowed_connect_ports;
     apr_array_header_t *workers;
     apr_array_header_t *balancers;
-    const char *domain;                /* domain name to use in absence of a domain name in the request */
-    int req;                   /* true if proxy requests are enabled */
+    const char *domain;     /* domain name to use in absence of a domain name in the request */
+    int req;                /* true if proxy requests are enabled */
     char req_set;
     enum {
       via_off,
@@ -359,9 +359,9 @@ PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r);
 PROXY_DECLARE(int) ap_proxy_hex2c(const char *x);
 PROXY_DECLARE(void) ap_proxy_c2hex(int ch, char *x);
 PROXY_DECLARE(char *)ap_proxy_canonenc(apr_pool_t *p, const char *x, int len, enum enctype t,
-                       int isenc);
+                                       int isenc);
 PROXY_DECLARE(char *)ap_proxy_canon_netloc(apr_pool_t *p, char **const urlp, char **userp,
-                        char **passwordp, char **hostp, apr_port_t *port);
+                                           char **passwordp, char **hostp, apr_port_t *port);
 PROXY_DECLARE(const char *)ap_proxy_date_canon(apr_pool_t *p, const char *x);
 PROXY_DECLARE(int) ap_proxy_liststr(const char *list, const char *val);
 PROXY_DECLARE(char *)ap_proxy_removestr(apr_pool_t *pool, const char *list, const char *val);