diff options
author | Daniel Stenberg <daniel@haxx.se> | 2010-11-11 16:41:59 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-11-11 16:44:50 +0100 |
commit | 8636742256c724bee50452d9ef92ffd25b76b8a1 (patch) | |
tree | 750c3df21068668c120fc68ee4811ab15b081883 /include | |
parent | a1f32ffee540bcef046dc499938585c5da9d0aa8 (diff) | |
download | curl-8636742256c724bee50452d9ef92ffd25b76b8a1.tar.gz |
HTTP Auth: Add CURLAUTH_ONLY
This is a meta symbol. OR this value together with a single specific
auth value to force libcurl to probe for un-restricted auth and if not,
only that single auth algorithm is acceptable.
For example you can use CURLAUTH_DIGEST|CURLAUTH_ONLY to make libcurl
first probe for what method to use, but yet only consider Digest to be
acceptable.
Using _only_ CURLAUTH_DIGEST without the CURLAUTH_ONLY field, will make
libcurl explicitly use Digest right away and not do any probing.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index e95887fe7..fbd0d9b01 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -585,6 +585,9 @@ 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_ONLY (1<<31) /* used together with a single other + type to force no auth or just that + single type */ #define CURLAUTH_ANY (~CURLAUTH_DIGEST_IE) /* all fine types set */ #define CURLAUTH_ANYSAFE (~(CURLAUTH_BASIC|CURLAUTH_DIGEST_IE)) |