From 895a9fbbfb06f371f4dbab3174451ace50dbb2b7 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 15 Aug 2010 20:01:27 +0200 Subject: s4:DSDB - DSDB_CONTROL_PASSWORD_CHANGE_OID - add a structure as value to the control This contains the NT and/or LM hash of the password specified by the user. --- source4/dsdb/samdb/samdb.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/samdb.h b/source4/dsdb/samdb/samdb.h index 93bab7bd2c..a3d8f7952d 100644 --- a/source4/dsdb/samdb/samdb.h +++ b/source4/dsdb/samdb/samdb.h @@ -82,6 +82,11 @@ struct dsdb_control_password_change_status { #define DSDB_CONTROL_PASSWORD_CHANGE_OID "1.3.6.1.4.1.7165.4.3.10" +struct dsdb_control_password_change { + const struct samr_Password *old_nt_pwd_hash; + const struct samr_Password *old_lm_pwd_hash; +}; + /** DSDB_CONTROL_APPLY_LINKS is internal to Samba4 - a token passed between repl_meta_data and linked_attributes modules */ -- cgit