diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-03-11 15:10:36 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-03-11 15:10:36 +0000 |
commit | 84bc23b92f3e22722b965ae460ca8d3413293d3b (patch) | |
tree | 36f86547e18679039fee3da17480b5ca19121888 /include | |
parent | d90472dd645429d0b016f0b30dcf889a25aa1240 (diff) |
curl_version_info() returns the feature bit CURL_VERSION_SSPI
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index a8fb925b5..20f061145 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -1382,6 +1382,7 @@ typedef struct { #define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth */ #define CURL_VERSION_LARGEFILE (1<<9) /* supports files bigger than 2GB */ #define CURL_VERSION_IDN (1<<10) /* International Domain Names support */ +#define CURL_VERSION_SSPI (1<<11) /* SSPI is supported */ /* * NAME curl_version_info() |