mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
samdb: Add transaction id control
Signed-off-by: Gary Lockyer <gary@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
parent
5c0345ea9b
commit
01fab30a97
@ -204,6 +204,15 @@ struct dsdb_control_password_acl_validation {
|
||||
bool pwd_reset;
|
||||
};
|
||||
|
||||
/*
|
||||
* Used to pass the current transaction identifier from the audit_log
|
||||
* module to group membership auditing module
|
||||
*/
|
||||
#define DSDB_CONTROL_TRANSACTION_IDENTIFIER_OID "1.3.6.1.4.1.7165.4.3.34"
|
||||
struct dsdb_control_transaction_identifier {
|
||||
struct GUID transaction_guid;
|
||||
};
|
||||
|
||||
#define DSDB_EXTENDED_REPLICATED_OBJECTS_OID "1.3.6.1.4.1.7165.4.4.1"
|
||||
struct dsdb_extended_replicated_object {
|
||||
struct ldb_message *msg;
|
||||
|
@ -1272,6 +1272,7 @@ static const struct ldap_control_handler ldap_known_controls[] = {
|
||||
{ DSDB_EXTENDED_ALLOCATE_RID_POOL, NULL, NULL },
|
||||
{ DSDB_CONTROL_NO_GLOBAL_CATALOG, NULL, NULL },
|
||||
{ DSDB_EXTENDED_SCHEMA_UPGRADE_IN_PROGRESS_OID, NULL, NULL },
|
||||
{ DSDB_CONTROL_TRANSACTION_IDENTIFIER_OID, NULL, NULL},
|
||||
{ NULL, NULL, NULL }
|
||||
};
|
||||
|
||||
|
@ -227,6 +227,7 @@
|
||||
#Allocated: DSDB_CONTROL_FORCE_RODC_LOCAL_CHANGE 1.3.6.1.4.1.7165.4.3.31
|
||||
#Allocated: DSDB_CONTROL_INVALID_NOT_IMPLEMENTED 1.3.6.1.4.1.7165.4.3.32
|
||||
#Allocated: DSDB_CONTROL_PASSWORD_ACL_VALIDATION_OID 1.3.6.1.4.1.7165.4.3.33
|
||||
#Allocated: DSDB_CONTROL_TRANSACTION_IDENTIFIER_OID 1.3.6.1.4.1.7165.4.3.34
|
||||
|
||||
|
||||
# Extended 1.3.6.1.4.1.7165.4.4.x
|
||||
|
Loading…
Reference in New Issue
Block a user