diff options
author | Jeremy Allison <jra@samba.org> | 1998-04-22 00:56:38 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-04-22 00:56:38 +0000 |
commit | 8584c6bd6621eefb49aff69581caf28e38b4ceda (patch) | |
tree | 188bea764963daf538fe1f783b879ee1d546b7c5 /source3/include | |
parent | 8c7e457ae46a820cef36ac3f99e41f1276bc4587 (diff) | |
download | samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.tar.gz samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.tar.bz2 samba-8584c6bd6621eefb49aff69581caf28e38b4ceda.zip |
genrand.c: Improved generation of random values, more secure.
loadparm.c: Started add of 'security=domain' code.
password.c: Fix for security=server NT bugs.
reply.c: Started add of 'security=domain' code.
server.c: Started add of 'security=domain' code.
smb.h: Started add of 'security=domain' code.
Jeremy.
(This used to be commit e6bda112ebe0d41f54c4249b5c2e1f24011347e1)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 46e282b2ba..4438024dbd 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1061,7 +1061,11 @@ char *Strstr(char *s, char *p); enum protocol_types {PROTOCOL_NONE,PROTOCOL_CORE,PROTOCOL_COREPLUS,PROTOCOL_LANMAN1,PROTOCOL_LANMAN2,PROTOCOL_NT1}; /* security levels */ +#ifdef DOMAIN_CLIENT +enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER,SEC_DOMAIN}; +#else /* DOMAIN_CLIENT */ enum security_types {SEC_SHARE,SEC_USER,SEC_SERVER}; +#endif /* DOMAIN_CLIENT */ /* printing types */ enum printing_types {PRINT_BSD,PRINT_SYSV,PRINT_AIX,PRINT_HPUX, |