Rephrase the descriptions of the forwarder_types SOCKS_4A and SOCKS_5
authorFabian Keil <fk@fabiankeil.de>
Sat, 19 Feb 2011 13:58:48 +0000 (13:58 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 19 Feb 2011 13:58:48 +0000 (13:58 +0000)
project.h

index 3f2a08d..dac7013 100644 (file)
--- 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,
 };
 
 /**