diff options
author | Steve Holme <steve_holme@hotmail.com> | 2014-11-06 10:23:08 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-11-06 11:10:08 +0000 |
commit | 1033acd92db83c3c87d071ef6debe9b1d0628b46 (patch) | |
tree | 125664777968b2e0a4227183e52396580903006d /lib/urldata.h | |
parent | 36bf1413330dfeb506210b8c5797507bc82dc5e5 (diff) |
http_digest: Added required SSPI based variables to digest structure
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 62a2b8048..f0f903844 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -391,6 +391,9 @@ struct curl_ssl_session { /* Struct used for Digest challenge-response authentication */ struct digestdata { +#if defined(USE_WINDOWS_SSPI) + BYTE *input_token; +#else char *nonce; char *cnonce; char *realm; @@ -400,6 +403,7 @@ struct digestdata { char *qop; char *algorithm; int nc; /* nounce count */ +#endif }; typedef enum { |