diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-06-12 17:34:27 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-06-12 17:34:27 +0000 |
commit | ecf32c964aa1f45285d26c91f2cad5513075aa45 (patch) | |
tree | d82d3f186b1762d21577c306e8d54831499889a3 /include | |
parent | e58f30b82a90cd79724ddc567b9e87732e3b1fa6 (diff) |
CURLHTTP* renamed to CURLAUTH* and NEGOTIATE is now GSSNEGOTIATE as there's
a "plain" Negotiate as well.
Diffstat (limited to 'include')
-rw-r--r-- | include/curl/curl.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/curl/curl.h b/include/curl/curl.h index 0d590d6ab..7ae5560c2 100644 --- a/include/curl/curl.h +++ b/include/curl/curl.h @@ -214,11 +214,11 @@ typedef enum { } curl_proxytype; typedef enum { - CURLHTTP_BASIC = 0, /* default */ - CURLHTTP_DIGEST = 1, /* Digest */ - CURLHTTP_NEGOTIATE = 2, /* Negotiate */ - CURLHTTP_NTLM = 3, /* NTLM */ - CURLHTTP_LAST /* never to be used */ + CURLAUTH_BASIC = 0, /* default */ + CURLAUTH_DIGEST = 1, /* Digest */ + CURLAUTH_GSSNEGOTIATE = 2, /* GSS-Negotiate */ + CURLAUTH_NTLM = 3, /* NTLM */ + CURLAUTH_LASTKNOWN /* never to be used */ } curl_httpauth; /* this was the error code 50 in 7.7.3 and a few earlier versions, this |