diff options
author | Gary Lockyer <gary@catalyst.net.nz> | 2018-04-12 13:19:16 +1200 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2018-05-16 04:07:16 +0200 |
commit | 36800d0903dcb7a8ebb12a347eb1dbbd038adba8 (patch) | |
tree | ebb9df12e92c91312da4ad0e75b2ee3045229c96 /librpc | |
parent | 5d068123f134e7c7f6ad2433720ba94e18d4f8b5 (diff) | |
download | samba-36800d0903dcb7a8ebb12a347eb1dbbd038adba8.tar.gz |
idl messaging: Add DSDB and Password events and message types
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'librpc')
-rw-r--r-- | librpc/idl/messaging.idl | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/librpc/idl/messaging.idl b/librpc/idl/messaging.idl index 14a6f92d583..fef00b1a408 100644 --- a/librpc/idl/messaging.idl +++ b/librpc/idl/messaging.idl @@ -140,8 +140,13 @@ interface messaging MSG_NTVFS_OPLOCK_BREAK = 0x0703, MSG_DREPL_ALLOCATE_RID = 0x0704, - /* Called during authentication and authorization to allow out-of- */ + /* + * Audit, Authentication and Authorisation event + * messages + */ MSG_AUTH_LOG = 0x0800, + MSG_DSDB_LOG = 0x0801, + MSG_DSDB_PWD_LOG = 0x0802, /* dbwrap messages 4001-4999 (0x0FA0 - 0x1387) */ /* MSG_DBWRAP_TDB2_CHANGES = 4001, */ @@ -178,5 +183,7 @@ interface messaging } messaging_reclog; /* This allows this well known service name to be referenced in python and C */ - const string AUTH_EVENT_NAME = "auth_event"; + const string AUTH_EVENT_NAME = "auth_event"; + const string DSDB_EVENT_NAME = "dsdb_event"; + const string DSDB_PWD_EVENT_NAME = "dsdb_password_event"; } |