From 06d6325da103ed3d9e9b9a199bb571b244bfc13e Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Wed, 8 Mar 2006 20:57:41 +0000 Subject: r14049: Found some more MSV1_0 bits and their behaviour; just for documentation purpose. Guenther (This used to be commit 0b00424e07f3f9c815664c619e2d7a670a838b93) --- source3/include/rpc_netlogon.h | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'source3/include/rpc_netlogon.h') 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. */ -- cgit