From ff0274c519c036c28b70efbb8bf823347c91eb96 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 24 Jan 2010 16:47:24 +0100 Subject: s3: Add NTLMSSP_FEATURE_CCACHE Uses the winbind ccache to do authentication if asked to do so --- source3/include/ntlmssp.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/include') diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h index d3de59835f..31b614fb54 100644 --- a/source3/include/ntlmssp.h +++ b/source3/include/ntlmssp.h @@ -40,6 +40,7 @@ enum ntlmssp_message_type #define NTLMSSP_FEATURE_SESSION_KEY 0x00000001 #define NTLMSSP_FEATURE_SIGN 0x00000002 #define NTLMSSP_FEATURE_SEAL 0x00000004 +#define NTLMSSP_FEATURE_CCACHE 0x00000008 struct ntlmssp_state { @@ -49,6 +50,7 @@ struct ntlmssp_state bool unicode; bool use_ntlmv2; + bool use_ccache; char *user; char *domain; char *workstation; -- cgit