diff options
author | Günther Deschner <gd@samba.org> | 2010-09-07 22:41:06 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-08 19:35:28 +0200 |
commit | 1217809c465a35b0a2727111d820007097b2b611 (patch) | |
tree | f4ec2eca7cae85d5a848b0df54e67af480594170 /librpc | |
parent | 8f8ff8bb29cb6f07ddcb310a089b695dbe176b34 (diff) | |
download | samba-1217809c465a35b0a2727111d820007097b2b611.tar.gz samba-1217809c465a35b0a2727111d820007097b2b611.tar.bz2 samba-1217809c465a35b0a2727111d820007097b2b611.zip |
nbt: add nbt_netlogon_response2 to IDL.
Guenther
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/nbt.idl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/librpc/idl/nbt.idl b/librpc/idl/nbt.idl index f14344b1b0..165a55cfa0 100644 --- a/librpc/idl/nbt.idl +++ b/librpc/idl/nbt.idl @@ -380,6 +380,7 @@ interface nbt typedef [enum16bit,public] enum { LOGON_REQUEST = 0, + LOGON_RESPONSE2 = 6, LOGON_PRIMARY_QUERY = 7, /* Was also NETLOGON_QUERY_FOR_PDC */ NETLOGON_ANNOUNCE_UAS = 10, NETLOGON_RESPONSE_FROM_PDC = 12, @@ -504,6 +505,12 @@ interface nbt uint16 lm20_token; } nbt_netlogon_response_from_pdc; + typedef [flag(NDR_NOALIGN),public] struct { + netlogon_command command; + astring pdc_name; + uint16 lm20_token; + } nbt_netlogon_response2; + typedef enum netr_SamDatabaseID netr_SamDatabaseID; /* used to announce SAM changes - MS-NRPC 2.2.1.5.1 */ |