summaryrefslogtreecommitdiff
path: root/librpc
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2016-09-20 03:26:22 +0200
committerAndreas Schneider <asn@cryptomilk.org>2016-10-26 11:20:13 +0200
commit96d317def154f77f5bf1e5f67349816cd1115f48 (patch)
treed58b00e1bda1aae4dee68cb602a4ca953711d1a3 /librpc
parent44648961671fe6b42780ab3fa95739233bad4894 (diff)
downloadsamba-96d317def154f77f5bf1e5f67349816cd1115f48.tar.gz
dcerpc.idl: add dcerpc_fault_flags bitmap
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Günther Deschner <gd@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r--librpc/idl/dcerpc.idl6
1 files changed, 5 insertions, 1 deletions
diff --git a/librpc/idl/dcerpc.idl b/librpc/idl/dcerpc.idl
index 669a603e03a..01816eeae7b 100644
--- a/librpc/idl/dcerpc.idl
+++ b/librpc/idl/dcerpc.idl
@@ -217,11 +217,15 @@ interface dcerpc
to see what fault w2k3 returns in this case */
const int DCERPC_FAULT_TODO = 0x00000042;
+ typedef [bitmap8bit] bitmap {
+ DCERPC_FAULT_FLAG_EXTENDED_ERROR_INFORMATION = 0x01
+ } dcerpc_fault_flags;
+
typedef struct {
uint32 alloc_hint;
uint16 context_id;
uint8 cancel_count;
- uint8 flags;
+ dcerpc_fault_flags flags;
dcerpc_nca_status status;
[value(0)] uint32 reserved;
[flag(NDR_REMAINING)] DATA_BLOB error_and_verifier;