diff options
author | Michael Osipov <1983-01-06@gmx.net> | 2014-07-21 09:53:45 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-07-23 00:01:39 +0200 |
commit | 46750c39bd3ece85ddef6a9dafd04bcd2748bc50 (patch) | |
tree | 0d30c87065f5d40458c58ae67865e37848b52de4 /include | |
parent | 5128672731a5edef2c7526610584fef821ec2309 (diff) | |
download | curl-46750c39bd3ece85ddef6a9dafd04bcd2748bc50.tar.gz |
configure/features: Add feature and version info for GSS-API and SPNEGO
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 4e981fcc8..80a8217cb 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -2234,7 +2234,7 @@ typedef struct { #define CURL_VERSION_GSSNEGOTIATE (1<<5) /* Negotiate auth support */ #define CURL_VERSION_DEBUG (1<<6) /* built with debug capabilities */ #define CURL_VERSION_ASYNCHDNS (1<<7) /* asynchronous dns resolves */ -#define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth */ +#define CURL_VERSION_SPNEGO (1<<8) /* SPNEGO auth is supported */ #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 */ @@ -2243,6 +2243,7 @@ typedef struct { #define CURL_VERSION_TLSAUTH_SRP (1<<14) /* TLS-SRP auth is supported */ #define CURL_VERSION_NTLM_WB (1<<15) /* NTLM delegating to winbind helper */ #define CURL_VERSION_HTTP2 (1<<16) /* HTTP2 support built-in */ +#define CURL_VERSION_GSSAPI (1<<17) /* GSS-API is supported */ /* * NAME curl_version_info() |