From c7e53ff75fc4eb6200d72f43b5c2336bedeb407c Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sat, 19 Feb 2011 13:58:48 +0000 Subject: [PATCH] Rephrase the descriptions of the forwarder_types SOCKS_4A and SOCKS_5 --- project.h | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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, }; /** -- 2.39.2