diff options
author | Stefan Metzmacher <metze@samba.org> | 2016-11-29 09:22:44 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2017-02-14 00:24:25 +0100 |
commit | 8cb905d380f1c9784e2509511d3aa304d0e90178 (patch) | |
tree | b710c374e42efd70656e18043c336fecc7403819 | |
parent | 8bcb35ab02044177d75c91e761d7f708f6846daa (diff) | |
download | samba-8cb905d380f1c9784e2509511d3aa304d0e90178.tar.gz |
drsuapi.idl: add drsuapi_DrsMoreOptions with DRSUAPI_DRS_GET_TGT
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
(cherry picked from commit 0c77567a4e23bc87c249066319724413e9f9916e)
-rw-r--r-- | librpc/idl/drsuapi.idl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index c3af8a5d2c2..d2b3dcf02cb 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -58,6 +58,10 @@ interface drsuapi DRSUAPI_DRS_GET_ALL_GROUP_MEMBERSHIP = 0x80000000 } drsuapi_DrsOptions; + typedef [public,bitmap32bit] bitmap { + DRSUAPI_DRS_GET_TGT = 0x00000001 + } drsuapi_DrsMoreOptions; + /* see DRS_MSG_REPMOD_V1 */ typedef [public,bitmap32bit] bitmap { DRSUAPI_DRS_UPDATE_FLAGS = 0x00000001, @@ -587,7 +591,7 @@ interface drsuapi drsuapi_DsPartialAttributeSet *partial_attribute_set; drsuapi_DsPartialAttributeSet *partial_attribute_set_ex; drsuapi_DsReplicaOIDMapping_Ctr mapping_ctr; - uint32 more_flags; + drsuapi_DrsMoreOptions more_flags; } drsuapi_DsGetNCChangesRequest10; typedef [switch_type(uint32)] union { |