summaryrefslogtreecommitdiffstats
path: root/source/param
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-02-24 02:55:00 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-02-24 02:55:00 +0000
commit837680ca517982f2e5944730581a83012d4181ae (patch)
treed0cc088b155f5df51eac7a64c6ad8dd4dbf7bcb5 /source/param
parent39f3bec0f62520e49a087403287330ed5f3a79c5 (diff)
downloadsamba-837680ca517982f2e5944730581a83012d4181ae.tar.gz
samba-837680ca517982f2e5944730581a83012d4181ae.tar.xz
samba-837680ca517982f2e5944730581a83012d4181ae.zip
Merge from HEAD client-side authentication changes:
- new kerberos code, allowing the account to change it's own password without special SD settings required - NTLMSSP client code, now seperated from cliconnect.c - NTLMv2 client code - SMB signing fixes Andrew Bartlett
Diffstat (limited to 'source/param')
-rw-r--r--source/param/loadparm.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/param/loadparm.c b/source/param/loadparm.c
index 1455f881569..daea4ab94f8 100644
--- a/source/param/loadparm.c
+++ b/source/param/loadparm.c
@@ -255,6 +255,10 @@ typedef struct
BOOL bAllowTrustedDomains;
BOOL bLanmanAuth;
BOOL bNTLMAuth;
+ BOOL bUseSpnego;
+ BOOL bClientLanManAuth;
+ BOOL bClientNTLMv2Auth;
+ BOOL bClientUseSpnego;
BOOL bDebugHiresTimestamp;
BOOL bDebugPid;
BOOL bDebugUid;
@@ -263,12 +267,12 @@ typedef struct
BOOL bUnicode;
BOOL bUseMmap;
BOOL bHostnameLookups;
- BOOL bUseSpnego;
BOOL bUnixExtensions;
BOOL bDisableNetbios;
BOOL bKernelChangeNotify;
int restrict_anonymous;
int name_cache_timeout;
+ BOOL client_signing;
}
global;