Move newly added proxy_conn_rec's uds_path field to the end of the struct like in...
authorYann Ylavic <ylavic@apache.org>
Thu, 27 Feb 2014 15:33:58 +0000 (15:33 +0000)
committerYann Ylavic <ylavic@apache.org>
Thu, 27 Feb 2014 15:33:58 +0000 (15:33 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1572628 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/mod_proxy.h

index b99ee17b90d8a5cf6ab4bd34945e9e6de8d09e39..15f6ca5e90cd41858ae7282e964a5e0eee36cf7c 100644 (file)
@@ -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 {