diff options
author | Nick White <arch@njw.me.uk> | 2008-05-01 03:02:25 +0000 |
---|---|---|
committer | Nick White <arch@njw.me.uk> | 2008-05-01 03:02:25 +0000 |
commit | 5141482351a3373472fc9974cd6059ff254dcf27 (patch) | |
tree | ff442e9ddc0123c19f63e1244543c396635f154b /src/getht.h | |
parent | 8e215729e7f45b1c9e17f8451046b7b5c04943e6 (diff) |
Simplified proxy setting internals
Taking advantage of CURL's pre-packaged constants for proxy options
git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-44
Diffstat (limited to 'src/getht.h')
-rw-r--r-- | src/getht.h | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/src/getht.h b/src/getht.h index c5f0728..ee5176a 100644 --- a/src/getht.h +++ b/src/getht.h @@ -27,18 +27,5 @@ #define STR_MAX 512 -typedef enum -{ - NONE, - HTTP, - SOCKS4, - SOCKS5 -} proxytype; - -typedef enum -{ - NOAUTH, - BASIC, - DIGEST, - NTLM, -} proxyauth; +char * proxytype; +char * proxyauth; |