diff options
author | Dave Craft <wimberosa@gmail.com> | 2011-12-04 11:01:54 -0600 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-12-08 11:48:17 +1100 |
commit | b58cb7ea932068982233e49c6e03be6a631f80da (patch) | |
tree | 2ca0501389cc1b63d0960dded711649e0d8a17d0 /librpc/idl | |
parent | bc03cba552b512ef436ff7da3bd0820c6341d783 (diff) | |
download | samba-b58cb7ea932068982233e49c6e03be6a631f80da.tar.gz samba-b58cb7ea932068982233e49c6e03be6a631f80da.tar.bz2 samba-b58cb7ea932068982233e49c6e03be6a631f80da.zip |
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 <tridge@samba.org>
Diffstat (limited to 'librpc/idl')
-rw-r--r-- | librpc/idl/drsuapi.idl | 7 |
1 files changed, 7 insertions, 0 deletions
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 { |