diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-09-08 15:05:29 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:37:51 -0500 |
commit | eaa64265f9e110eed4a83d1a79da644505d93692 (patch) | |
tree | b558da1141d5cc48c7b1cbbe836c546a615a4599 /source4/librpc/idl | |
parent | 1e05f9a00ae7544f483277cf99f49b8646d1010a (diff) | |
download | samba-eaa64265f9e110eed4a83d1a79da644505d93692.tar.gz samba-eaa64265f9e110eed4a83d1a79da644505d93692.tar.bz2 samba-eaa64265f9e110eed4a83d1a79da644505d93692.zip |
r10085: decode level 5 and 9 too
(this is taken from the ethereal dissector)
metze
(This used to be commit c50f5fe33b0025edbf473d7c166dea9655e2d42f)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r-- | source4/librpc/idl/winsrepl.idl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/source4/librpc/idl/winsrepl.idl b/source4/librpc/idl/winsrepl.idl index 13da5a9c26..4b66255a9c 100644 --- a/source4/librpc/idl/winsrepl.idl +++ b/source4/librpc/idl/winsrepl.idl @@ -68,7 +68,9 @@ interface wrepl WREPL_REPL_SEND_REQUEST = 2, WREPL_REPL_SEND_REPLY = 3, WREPL_REPL_UPDATE = 4, - WREPL_REPL_INFORM = 8 + WREPL_REPL_5 = 5, + WREPL_REPL_INFORM = 8, + WREPL_REPL_9 = 9 } wrepl_replication_cmd; typedef [nodiscriminant] union { @@ -77,7 +79,9 @@ interface wrepl [case(WREPL_REPL_SEND_REQUEST)] wrepl_wins_owner owner; [case(WREPL_REPL_SEND_REPLY)] wrepl_send_reply reply; [case(WREPL_REPL_UPDATE)] ; + [case(WREPL_REPL_5)] wrepl_table table; [case(WREPL_REPL_INFORM)] wrepl_table table; + [case(WREPL_REPL_9)] wrepl_table table; } wrepl_replication_info; typedef struct { |