diff options
author | Günther Deschner <gd@samba.org> | 2006-03-08 20:57:41 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:11:08 -0500 |
commit | 06d6325da103ed3d9e9b9a199bb571b244bfc13e (patch) | |
tree | c1b727257dccc4b36553306628eb8bb03a18f8af /source3 | |
parent | b05af765418fe6054f2443ecbb4a556c5882a8c7 (diff) | |
download | samba-06d6325da103ed3d9e9b9a199bb571b244bfc13e.tar.gz samba-06d6325da103ed3d9e9b9a199bb571b244bfc13e.tar.bz2 samba-06d6325da103ed3d9e9b9a199bb571b244bfc13e.zip |
r14049: Found some more MSV1_0 bits and their behaviour;
just for documentation purpose.
Guenther
(This used to be commit 0b00424e07f3f9c815664c619e2d7a670a838b93)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/rpc_netlogon.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/source3/include/rpc_netlogon.h b/source3/include/rpc_netlogon.h index e26768b7b9..9df7701de4 100644 --- a/source3/include/rpc_netlogon.h +++ b/source3/include/rpc_netlogon.h @@ -108,8 +108,20 @@ #define SE_GROUP_RESOURCE 0x20000000 /* Flags for controlling the behaviour of a particular logon */ -#define MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT ( 0x020 ) -#define MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT ( 0x800 ) + +/* sets LOGON_SERVER_TRUST_ACCOUNT user_flag */ +#define MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT 0x00000020 +#define MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT 0x00000800 + +/* updates the "logon time" on network logon */ +#define MSV1_0_UPDATE_LOGON_STATISTICS 0x00000004 + +/* returns the user parameters in the driveletter */ +#define MSV1_0_RETURN_USER_PARAMETERS 0x00000008 + +/* returns the profilepath in the driveletter and + * sets LOGON_PROFILE_PATH_RETURNED user_flag */ +#define MSV1_0_RETURN_PROFILE_PATH 0x00000200 #if 0 /* I think this is correct - it's what gets parsed on the wire. JRA. */ |