diff options
author | Günther Deschner <gd@samba.org> | 2008-04-21 19:27:45 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-04-21 20:21:39 +0200 |
commit | 8d87b54a9ec8f5dcf7e305f399ac3a36564e6b9f (patch) | |
tree | 00a390a56b488d814affab9b86e0b5e86c649ccd | |
parent | 1eca3f138c9368116a405f3871d39884375af0dd (diff) | |
download | samba-8d87b54a9ec8f5dcf7e305f399ac3a36564e6b9f.tar.gz samba-8d87b54a9ec8f5dcf7e305f399ac3a36564e6b9f.tar.bz2 samba-8d87b54a9ec8f5dcf7e305f399ac3a36564e6b9f.zip |
IDL: Add NTLOGON_RESPONSE_FROM_PDC2 to nbt_logon_request.
Guenther
(This used to be commit 1724000a95f3814a5ce4eaf5807dbf20e7e2e4f0)
-rw-r--r-- | source3/librpc/idl/nbt.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/librpc/idl/nbt.idl b/source3/librpc/idl/nbt.idl index 4dc7972e45..cfae5ca4a5 100644 --- a/source3/librpc/idl/nbt.idl +++ b/source3/librpc/idl/nbt.idl @@ -550,7 +550,8 @@ interface nbt typedef enum { NTLOGON_SAM_LOGON = 0x12, NTLOGON_SAM_LOGON_REPLY = 0x13, - NTLOGON_SAM_LOGON_REPLY15 = 0x15 + NTLOGON_SAM_LOGON_REPLY15 = 0x15, + NTLOGON_RESPONSE_FROM_PDC2 = 0x17 } nbt_ntlogon_command; typedef struct { @@ -579,7 +580,7 @@ interface nbt [case(NTLOGON_SAM_LOGON)] nbt_ntlogon_sam_logon logon; [case(NTLOGON_SAM_LOGON_REPLY)] nbt_ntlogon_sam_logon_reply reply; [case(NTLOGON_SAM_LOGON_REPLY15)] nbt_ntlogon_sam_logon_reply reply; - [case(NETLOGON_RESPONSE_FROM_PDC2)] nbt_netlogon_response_from_pdc2 reply2; + [case(NTLOGON_RESPONSE_FROM_PDC2)] nbt_netlogon_response_from_pdc2 reply2; } nbt_ntlogon_request; typedef [flag(NDR_NOALIGN),public] struct { |