diff options
author | Michael Adam <obnox@samba.org> | 2008-07-22 13:07:55 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-07-22 13:16:56 +0200 |
commit | 901e764fa75030c22e4bda37e384dc074bcceb08 (patch) | |
tree | b582645ec27cc93b490c02558208ba62a1ace46c | |
parent | e7785a371a1881eb1ad5ee6cf8d2de2b4537fa39 (diff) | |
download | samba-901e764fa75030c22e4bda37e384dc074bcceb08.tar.gz samba-901e764fa75030c22e4bda37e384dc074bcceb08.tar.bz2 samba-901e764fa75030c22e4bda37e384dc074bcceb08.zip |
drsuapi.idl: add drsuapi_SupportedExtensionsExt bitfield.
This knowledge is obtained from the wspp-docs (section 5.35).
Michael
(This used to be commit f5afb695045b1a2f3b8c00a4d82d40e8e50726c9)
-rw-r--r-- | source4/librpc/idl/drsuapi.idl | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/source4/librpc/idl/drsuapi.idl b/source4/librpc/idl/drsuapi.idl index 96cb56ba3d..ee1f5c8139 100644 --- a/source4/librpc/idl/drsuapi.idl +++ b/source4/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; |