diff options
author | Prash Dush <pradush123@gmail.com> | 2014-01-24 13:01:29 +0000 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2014-01-29 20:17:11 +0000 |
commit | 86724581b6c02d160b52f817550cfdfc9c93af62 (patch) | |
tree | 475080060186fb102c89ff98ed866744433c2a81 /lib/urldata.h | |
parent | 665c160f0a4635565b44704ca281d2a03e715d6d (diff) |
ntlm: Added support for NTLMv2
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 7cb685707..e37971e02 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2014, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -435,6 +435,8 @@ struct ntlmdata { #else unsigned int flags; unsigned char nonce[8]; + void* target_info; /* TargetInfo received in the ntlm type-2 message */ + unsigned int target_info_len; #endif }; |