[Privoxy-commits] [privoxy] 03/17: Reorder gateway_host in struct forward_spec to save memory
    User Git 
    git at git.privoxy.org
       
    Thu Jan 21 13:03:30 UTC 2021
    
    
  
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 32ba28b1225c54c850c48814b018e7afcffbd0a5
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Jan 21 11:22:26 2021 +0100
    Reorder gateway_host in struct forward_spec to save memory
---
 project.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/project.h b/project.h
index eeed8bc4..191fe355 100644
--- a/project.h
+++ b/project.h
@@ -1263,12 +1263,12 @@ struct forward_spec
    /** Connection type.  Must be SOCKS_NONE, SOCKS_4, SOCKS_4A or SOCKS_5. */
    enum forwarder_type type;
 
-   /** SOCKS server hostname.  Only valid if "type" is SOCKS_4 or SOCKS_4A. */
-   char *gateway_host;
-
    /** SOCKS server port. */
    int   gateway_port;
 
+   /** SOCKS server hostname.  Only valid if "type" is SOCKS_4 or SOCKS_4A. */
+   char *gateway_host;
+
    /** SOCKS5 username. */
    char *auth_username;
 
-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
    
    
More information about the Privoxy-commits
mailing list