diff options
author | Matthieu Patou <mat@matws.net> | 2011-09-23 18:09:48 -0700 |
---|---|---|
committer | Matthieu Patou <mat@samba.org> | 2014-10-02 12:02:02 +0200 |
commit | c67468d43b4c93ec2a7dc727a3192e339eb5528c (patch) | |
tree | 171260830de42747d87e01d8b98957f1463d87b0 /librpc | |
parent | c396660f06bae80a652c228895eb7102f7e1658a (diff) | |
download | samba-c67468d43b4c93ec2a7dc727a3192e339eb5528c.tar.gz samba-c67468d43b4c93ec2a7dc727a3192e339eb5528c.tar.xz samba-c67468d43b4c93ec2a7dc727a3192e339eb5528c.zip |
idl: improve frsrpc by adding missing flag, fixing typo (W -> VV) and making needed structure public
Change-Id: Ia507b5f627464ab78a145e54b276fc8d64ee3c14
Signed-off-by: Matthieu Patou <mat@matws.net>
Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/frsrpc.idl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/librpc/idl/frsrpc.idl b/librpc/idl/frsrpc.idl index 6899e7aabe..016095f1d6 100644 --- a/librpc/idl/frsrpc.idl +++ b/librpc/idl/frsrpc.idl @@ -36,6 +36,7 @@ interface frsrpc FRSRPC_CO_FLAG_ONLIST = 0x00000010, FRSRPC_CO_FLAG_LOCALCO = 0x00000020, FRSRPC_CO_FLAG_RETRY = 0x00000040, + FRSRPC_CO_FLAG_INST_INCOMPLETE = 0x00000080, FRSRPC_CO_FLAG_OUT_OF_ORDER = 0x00000200, FRSRPC_CO_FLAG_NEW_FILE = 0x00000400, FRSRPC_CO_FLAG_CONTROL = 0x00001000, @@ -226,7 +227,7 @@ interface frsrpc FRSRPC_COMMAND_JOINING = 0x00000130, FRSRPC_COMMAND_JOINED = 0x00000128, FRSRPC_COMMAND_UNJOIN_REMOTE = 0x00000148, - FRSRPC_COMMAND_WJOIN_DONE = 0x00000136, + FRSRPC_COMMAND_VVJOIN_DONE = 0x00000136, FRSRPC_COMMAND_SEND_STAGE = 0x00000228 } frsrpc_CommPktCommand; @@ -337,7 +338,7 @@ interface frsrpc FRSRPC_COMM_PKT_MINOR_9 = 0x00000009 } frsrpc_CommPktMinor; - typedef struct { + [public] typedef struct { frsrpc_CommPktMajor major; frsrpc_CommPktMinor minor; [value(1)] uint32 cs_id; |