diff options
author | Mandy Wu <mandy.wu@intel.com> | 2011-07-18 23:36:36 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-07-18 23:36:36 +0200 |
commit | a6d4807d028eb82f4a99587b0a8851727ca88566 (patch) | |
tree | 0f2398259a279bd3d826eee2e78cc76aa1747e46 /include | |
parent | 650a504b2f244ad323f1b45c2f36a2f967f7870f (diff) |
NTLM single-sign on supported
With the use of the 'ntlm_auth' tool from the Samba project
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index a9d42fad6..998c109b9 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -600,6 +600,7 @@ typedef enum { #define CURLAUTH_GSSNEGOTIATE (1<<2) /* GSS-Negotiate */ #define CURLAUTH_NTLM (1<<3) /* NTLM */ #define CURLAUTH_DIGEST_IE (1<<4) /* Digest with IE flavour */ +#define CURLAUTH_NTLM_SSO (1<<5) /* NTLM single-sign-on */ #define CURLAUTH_ONLY (1<<31) /* used together with a single other type to force no auth or just that single type */ @@ -2092,8 +2093,9 @@ typedef struct { #define CURL_VERSION_CONV (1<<12) /* character conversions supported */ #define CURL_VERSION_CURLDEBUG (1<<13) /* debug memory tracking supported */ #define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */ - -/* +#define CURL_VERSION_NTLM_SSO (1<<15) /* NTLM single-sign-on is supported + by using ntlm_auth */ + /* * NAME curl_version_info() * * DESCRIPTION |