From: Fabian Keil <fk@fabiankeil.de>
Date: Sat, 19 Feb 2011 13:58:48 +0000 (+0000)
Subject: Rephrase the descriptions of the forwarder_types SOCKS_4A and SOCKS_5
X-Git-Tag: v_3_0_18~323
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/@default-cgi@/faq/static/@default-cgi@edit-actions?a=commitdiff_plain;h=c7e53ff75fc4eb6200d72f43b5c2336bedeb407c;p=privoxy.git

Rephrase the descriptions of the forwarder_types SOCKS_4A and SOCKS_5
---

diff --git a/project.h b/project.h
index 3f2a08dd..dac70137 100644
--- a/project.h
+++ b/project.h
@@ -1,7 +1,7 @@
 #ifndef PROJECT_H_INCLUDED
 #define PROJECT_H_INCLUDED
 /** Version string. */
-#define PROJECT_H_VERSION "$Id: project.h,v 1.161 2011/01/22 12:30:22 fabiankeil Exp $"
+#define PROJECT_H_VERSION "$Id: project.h,v 1.162 2011/02/19 13:56:55 fabiankeil Exp $"
 /*********************************************************************
  *
  * File        :  $Source: /cvsroot/ijbswa/current/project.h,v $
@@ -1032,10 +1032,14 @@ struct block_spec
 #endif /* def FEATURE_TRUST */
 
 enum forwarder_type {
-   SOCKS_NONE =  0,    /**< Don't use a SOCKS server               */
-   SOCKS_4    = 40,    /**< original SOCKS 4 protocol              */
-   SOCKS_4A   = 41,    /**< as modified for hosts w/o external DNS */
-   SOCKS_5    = 50,    /**< as modified for hosts w/o external DNS */
+   /**< Don't use a SOCKS server               */
+   SOCKS_NONE =  0,
+   /**< original SOCKS 4 protocol              */
+   SOCKS_4    = 40,
+   /**< SOCKS 4A, DNS resolution is done by the SOCKS server */
+   SOCKS_4A   = 41,
+   /**< SOCKS 5 with hostnames, DNS resolution is done by the SOCKS server */
+   SOCKS_5    = 50,
 };
 
 /**