X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=project.h;h=dac701376c49e14b9005152cb22926725af6f4f1;hp=3f2a08ddec92dc5ee96e02804d1702c2aec1342a;hb=7c2182315836938a94209f146835454027554393;hpb=f82469cfb4b0267aed0c43f6c50d21d79e4b7288 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, }; /**