From b58cb7ea932068982233e49c6e03be6a631f80da Mon Sep 17 00:00:00 2001 From: Dave Craft Date: Sun, 4 Dec 2011 11:01:54 -0600 Subject: Add DRSUAPI_DRS_UPDATE_(x) flags DRSUAPI_DRS_UPDATE flags are used in DRS_MSG_REPMOD_V1 message structure when repsFrom is modified via RPC. The RPCs are currently uncoded but samba_kcc maintains the flags (and uses them to identify what repsFrom changes are to be executed). These are currently helpful to samba_kcc and are intended to ultimately be used in RPCs. Signed-off-by: Andrew Tridgell --- librpc/idl/drsuapi.idl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'librpc') diff --git a/librpc/idl/drsuapi.idl b/librpc/idl/drsuapi.idl index f0c849044a..af7e3ed48c 100644 --- a/librpc/idl/drsuapi.idl +++ b/librpc/idl/drsuapi.idl @@ -58,6 +58,13 @@ interface drsuapi DRSUAPI_DRS_GET_ALL_GROUP_MEMBERSHIP = 0x80000000 } drsuapi_DrsOptions; + /* see DRS_MSG_REPMOD_V1 */ + typedef [public,bitmap32bit] bitmap { + DRSUAPI_DRS_UPDATE_FLAGS = 0x00000001, + DRSUAPI_DRS_UPDATE_ADDRESS = 0x00000002, + DRSUAPI_DRS_UPDATE_SCHEDULE = 0x00000004 + } drsuapi_DrsUpdate; + /*****************/ /* Function 0x00 */ typedef [bitmap32bit] bitmap { -- cgit