From: Yann Ylavic Date: Thu, 27 Feb 2014 15:33:58 +0000 (+0000) Subject: Move newly added proxy_conn_rec's uds_path field to the end of the struct like in... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce1954ad5ae451ba4130a19c7d2d425d698b91ac;p=thirdparty%2Fapache%2Fhttpd.git Move newly added proxy_conn_rec's uds_path field to the end of the struct like in 2.4.x. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1572628 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.h b/modules/proxy/mod_proxy.h index b99ee17b90d..15f6ca5e90c 100644 --- a/modules/proxy/mod_proxy.h +++ b/modules/proxy/mod_proxy.h @@ -240,7 +240,6 @@ typedef struct { * that is used over the backend connection. */ proxy_worker *worker; /* Connection pool this connection belongs to */ apr_pool_t *pool; /* Subpool for hostname and addr data */ - const char *uds_path; /* Unix domain socket path */ const char *hostname; apr_sockaddr_t *addr; /* Preparsed remote address info */ apr_pool_t *scpool; /* Subpool used for socket and connection data */ @@ -254,6 +253,7 @@ typedef struct { unsigned int need_flush:1; /* Flag to decide whether we need to flush the * filter chain or not */ unsigned int inreslist:1; /* connection in apr_reslist? */ + const char *uds_path; /* Unix domain socket path */ } proxy_conn_rec; typedef struct {