diff options
author | Günther Deschner <gd@samba.org> | 2008-11-28 11:15:29 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-11-28 14:16:51 +0100 |
commit | 143097d71c15c1624446b56205639e0b863d35fe (patch) | |
tree | 222d10c716a31836a6c5e01e80f2cb527feb31a4 /source3/rpc_client | |
parent | 580c2b3283cfa0f55a5c7e4632a2a101a036b364 (diff) | |
download | samba-143097d71c15c1624446b56205639e0b863d35fe.tar.gz samba-143097d71c15c1624446b56205639e0b863d35fe.tar.bz2 samba-143097d71c15c1624446b56205639e0b863d35fe.zip |
s3-samr: add init_samr_user_info25 and init_samr_user_info26.
Guenther
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/init_samr.c | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/source3/rpc_client/init_samr.c b/source3/rpc_client/init_samr.c index 19dd0b3c09..473fae73af 100644 --- a/source3/rpc_client/init_samr.c +++ b/source3/rpc_client/init_samr.c @@ -508,6 +508,91 @@ void init_samr_user_info24(struct samr_UserInfo24 *r, } /************************************************************************* + init_samr_user_info25 + *************************************************************************/ + +void init_samr_user_info25(struct samr_UserInfo25 *r, + NTTIME last_logon, + NTTIME last_logoff, + NTTIME last_password_change, + NTTIME acct_expiry, + NTTIME allow_password_change, + NTTIME force_password_change, + const char *account_name, + const char *full_name, + const char *home_directory, + const char *home_drive, + const char *logon_script, + const char *profile_path, + const char *description, + const char *workstations, + const char *comment, + struct lsa_BinaryString *parameters, + uint32_t rid, + uint32_t primary_gid, + uint32_t acct_flags, + uint32_t fields_present, + struct samr_LogonHours logon_hours, + uint16_t bad_password_count, + uint16_t logon_count, + uint16_t country_code, + uint16_t code_page, + uint8_t nt_password_set, + uint8_t lm_password_set, + uint8_t password_expired, + struct samr_CryptPasswordEx *pwd_buf) +{ + DEBUG(10, ("init_samr_user_info25:\n")); + + memset(r, '\0', sizeof(*r)); + init_samr_user_info21(&r->info, + last_logon, + last_logoff, + last_password_change, + acct_expiry, + allow_password_change, + force_password_change, + account_name, + full_name, + home_directory, + home_drive, + logon_script, + profile_path, + description, + workstations, + comment, + parameters, + rid, + primary_gid, + acct_flags, + fields_present, + logon_hours, + bad_password_count, + logon_count, + country_code, + code_page, + nt_password_set, + lm_password_set, + password_expired); + + r->password = *pwd_buf; +} + +/************************************************************************* + init_samr_user_info26 + *************************************************************************/ + +void init_samr_user_info26(struct samr_UserInfo26 *r, + struct samr_CryptPasswordEx *pwd_buf, + uint8_t password_expired) +{ + DEBUG(10, ("init_samr_user_info26:\n")); + + r->password = *pwd_buf; + r->password_expired = password_expired; +} + +/************************************************************************* inits a samr_CryptPasswordEx structure *************************************************************************/ |