diff options
author | Simo Sorce <idra@samba.org> | 2011-10-21 16:10:43 -0400 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-10-24 19:19:28 +0200 |
commit | 8870daeb8d93e45320eb5bcfa58544d520dc7c69 (patch) | |
tree | 918faedfbb2b5f4b618323ee822590b78b4c2d50 /librpc | |
parent | f3c25bc6a5f23a248f832fa58c59c16522ac255b (diff) | |
download | samba-8870daeb8d93e45320eb5bcfa58544d520dc7c69.tar.gz |
idl: Improve MS-PAC IDL
Change some misleading variable names to reflect the actual function.
Add missing field name/types previously marked as unkown.
Signed-off-by: Günther Deschner <gd@samba.org>
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Mon Oct 24 19:19:28 CEST 2011 on sn-devel-104
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/netlogon.idl | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl index 813421eef9a..24bab8030de 100644 --- a/librpc/idl/netlogon.idl +++ b/librpc/idl/netlogon.idl @@ -207,9 +207,9 @@ interface netlogon } netr_UserFlags; typedef struct { - NTTIME last_logon; - NTTIME last_logoff; - NTTIME acct_expiry; + NTTIME logon_time; + NTTIME logoff_time; + NTTIME kickoff_time; NTTIME last_password_change; NTTIME allow_password_change; NTTIME force_password_change; @@ -227,11 +227,15 @@ interface netlogon netr_UserFlags user_flags; netr_UserSessionKey key; lsa_StringLarge logon_server; - lsa_StringLarge domain; + lsa_StringLarge logon_domain; dom_sid2 *domain_sid; netr_LMSessionKey LMSessKey; samr_AcctFlags acct_flags; - uint32 unknown[7]; + uint32 sub_auth_status; + NTTIME last_successful_logon; + NTTIME last_failed_logon; + uint32 failed_logon_count; + uint32 reserved; } netr_SamBaseInfo; typedef struct { |