aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-11-06 15:05:36 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-11-06 14:59:53 +0000
commit500d2db302bea1544e9750b44cd1531a1a50d8fe (patch)
tree825a76bcda224ab6c77c9e8ac5a2af04a6532bf4 /lib/urldata.h
parent6d45f952e6c61695a1aa6b17d2103442a049e883 (diff)
http_digest: Reworked the SSPI based input token storage
Reworked the input token (challenge message) storage as what is passed to the buf and desc in the response generation are typically blobs of data rather than strings, so this is more in keeping with other areas of the SSPI code, such as the NTLM message functions.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index f0f903844..6238f6204 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -393,6 +393,7 @@ struct curl_ssl_session {
struct digestdata {
#if defined(USE_WINDOWS_SSPI)
BYTE *input_token;
+ size_t input_token_len;
#else
char *nonce;
char *cnonce;