From de4610a55f9e99bebaf448ca33e2e43baf977c74 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 28 Jan 2009 21:33:58 +0000 Subject: - Markus Moeller introduced two new options to libcurl: CURLOPT_SOCKS5_GSSAPI_SERVICE and CURLOPT_SOCKS5_GSSAPI_NEC to allow libcurl to do GSS-style authentication with SOCKS5 proxies. The curl tool got the options called --socks5-gssapi-service and --socks5-gssapi-nec to enable these. --- include/curl/curl.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'include') diff --git a/include/curl/curl.h b/include/curl/curl.h index 0b9ec4aef..005a613f0 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1162,6 +1162,12 @@ typedef enum { /* block size for TFTP transfers */ CINIT(TFTP_BLKSIZE, LONG, 178), + /* Socks Service */ + CINIT(SOCKS5_GSSAPI_SERVICE, LONG, 179), + + /* Socks Service */ + CINIT(SOCKS5_GSSAPI_NEC, LONG, 180), + CURLOPT_LASTENTRY /* the last unused */ } CURLoption; -- cgit v1.2.3