summaryrefslogtreecommitdiff
path: root/source4/librpc/idl
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-04-26 03:07:46 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:51:35 -0500
commit3fb30e46beb0227f57c5277206d95f070b8316b8 (patch)
tree19e8201b5c6cba888c605325919f29bdd05550bd /source4/librpc/idl
parent0d1c529cdcd4a2c808e16f7b1189fa0bfe799d89 (diff)
downloadsamba-3fb30e46beb0227f57c5277206d95f070b8316b8.tar.gz
samba-3fb30e46beb0227f57c5277206d95f070b8316b8.tar.bz2
samba-3fb30e46beb0227f57c5277206d95f070b8316b8.zip
r364: finally worked out the ancient samr_ChangePasswordUser() interface
yay! (This used to be commit 0221566cf5ff7dc5ce0de9af451b935ed8615f4e)
Diffstat (limited to 'source4/librpc/idl')
-rw-r--r--source4/librpc/idl/samr.idl27
1 files changed, 12 insertions, 15 deletions
diff --git a/source4/librpc/idl/samr.idl b/source4/librpc/idl/samr.idl
index 3de5459bd5..92b7a3fa91 100644
--- a/source4/librpc/idl/samr.idl
+++ b/source4/librpc/idl/samr.idl
@@ -735,24 +735,21 @@
} samr_Hash;
/*
- this interface is quite mysterious. I can make w2k3 give me
- NT_STATUS_PASSWORD_RESTRICTION and NT_STATUS_WRONG_PASSWORD
- with various options, but so far I haven't managed a successful
- password change. Perhaps this interface is disabled now?
- Needs testing against NT4
+ this is a password change interface that doesn't give
+ the server the plaintext password. Depricated.
*/
NTSTATUS samr_ChangePasswordUser(
[in,ref] policy_handle *handle,
- [in] bool8 unknown1,
- [in] samr_Hash *hash1,
- [in] samr_Hash *hash2,
- [in] bool8 unknown2,
- [in] samr_Hash *hash3,
- [in] samr_Hash *hash4,
- [in] bool8 unknown3,
- [in] samr_Hash *hash5,
- [in] bool8 unknown4,
- [in] samr_Hash *hash6
+ [in] bool8 lm_present,
+ [in] samr_Hash *old_lm_crypted,
+ [in] samr_Hash *new_lm_crypted,
+ [in] bool8 nt_present,
+ [in] samr_Hash *old_nt_crypted,
+ [in] samr_Hash *new_nt_crypted,
+ [in] bool8 cross1_present,
+ [in] samr_Hash *nt_cross,
+ [in] bool8 cross2_present,
+ [in] samr_Hash *lm_cross
);
/************************/