diff options
author | Günther Deschner <gd@samba.org> | 2007-12-04 09:41:28 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:48:08 +0100 |
commit | 96b46e99072f0c31ade85a5fa539cafc021fb42c (patch) | |
tree | c0b15cbdb0a75a7e0af5d83fcadc53c4b21a78f2 /source4/librpc | |
parent | 19b00d57f4ea0826bce1b615f23f6e182fdd14af (diff) | |
download | samba-96b46e99072f0c31ade85a5fa539cafc021fb42c.tar.gz samba-96b46e99072f0c31ade85a5fa539cafc021fb42c.tar.bz2 samba-96b46e99072f0c31ade85a5fa539cafc021fb42c.zip |
r26285: Add IDL and torture test for netr_ServerPasswordGet().
Guenther
(This used to be commit d64244cfe871cd549a991ac2a708263fc77d2fef)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/idl/netlogon.idl | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/source4/librpc/idl/netlogon.idl b/source4/librpc/idl/netlogon.idl index 9743f74b34..8e0950c2aa 100644 --- a/source4/librpc/idl/netlogon.idl +++ b/source4/librpc/idl/netlogon.idl @@ -1112,7 +1112,15 @@ interface netlogon /****************/ /* Function 0x1f */ - WERROR netr_NETRSERVERPASSWORDGET(); + WERROR netr_ServerPasswordGet( + [in] [string,charset(UTF16)] uint16 *server_name, + [in] [string,charset(UTF16)] uint16 account_name[], + [in] netr_SchannelType secure_channel_type, + [in] [string,charset(UTF16)] uint16 computer_name[], + [in,ref] netr_Authenticator *credential, + [out,ref] netr_Authenticator *return_authenticator, + [out,ref] samr_Password *password + ); /****************/ /* Function 0x20 */ |