summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-07-22 13:07:55 +0200
committerMichael Adam <obnox@samba.org>2008-07-22 13:16:56 +0200
commitf5afb695045b1a2f3b8c00a4d82d40e8e50726c9 (patch)
tree94d12e2416d72b9e65f181eeef1718703ba4536b /source
parent705f79bd0a5e93daa0cb11b5dcca36e75c75df93 (diff)
downloadsamba-f5afb695045b1a2f3b8c00a4d82d40e8e50726c9.tar.gz
drsuapi.idl: add drsuapi_SupportedExtensionsExt bitfield.
This knowledge is obtained from the wspp-docs (section 5.35). Michael
Diffstat (limited to 'source')
-rw-r--r--source/librpc/idl/drsuapi.idl7
1 files changed, 6 insertions, 1 deletions
diff --git a/source/librpc/idl/drsuapi.idl b/source/librpc/idl/drsuapi.idl
index 96cb56ba3d6..ee1f5c81397 100644
--- a/source/librpc/idl/drsuapi.idl
+++ b/source/librpc/idl/drsuapi.idl
@@ -58,6 +58,11 @@ interface drsuapi
DRSUAPI_SUPPORTED_EXTENSION_80000000 = 0x80000000
} drsuapi_SupportedExtensions;
+ typedef [bitmap32bit] bitmap {
+ DRSUAPI_SUPPORTED_EXTENSION_ADAM = 0x00000001,
+ DRSUAPI_SUPPORTED_EXTENSION_LH_BETA2 = 0x00000002
+ } drsuapi_SupportedExtensionsExt;
+
/* this is used by w2k */
typedef struct {
drsuapi_SupportedExtensions supported_extensions;
@@ -79,7 +84,7 @@ interface drsuapi
GUID site_guid;
uint32 u1;
uint32 repl_epoch;
- uint32 unknown;
+ drsuapi_SupportedExtensionsExt supported_extensions_ext;
GUID config_dn_guid;
} drsuapi_DsBindInfo48;