1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Fix IDL for netr_ServerReqChallenge, netr_ServerAuthenticate and

netr_ServerAuthenticate2 to match what is on NDR and to
generate a more appropriate samba3 netlogon client.

Guenther
(This used to be commit 3bee9b8979)
This commit is contained in:
Günther Deschner 2008-02-15 23:30:53 +01:00
parent e3a975b7f3
commit ab09585d82

View File

@ -272,7 +272,8 @@ interface netlogon
NTSTATUS netr_ServerReqChallenge(
[in,unique,string,charset(UTF16)] uint16 *server_name,
[in,string,charset(UTF16)] uint16 computer_name[],
[in,out,ref] netr_Credential *credentials
[in,ref] netr_Credential *credentials,
[out,ref] netr_Credential *return_credentials
);
@ -286,7 +287,8 @@ interface netlogon
[in,string,charset(UTF16)] uint16 account_name[],
[in] netr_SchannelType secure_channel_type,
[in,string,charset(UTF16)] uint16 computer_name[],
[in,out,ref] netr_Credential *credentials
[in,ref] netr_Credential *credentials,
[out,ref] netr_Credential *return_credentials
);
@ -854,7 +856,8 @@ interface netlogon
[in] [string,charset(UTF16)] uint16 account_name[],
[in] netr_SchannelType secure_channel_type,
[in] [string,charset(UTF16)] uint16 computer_name[],
[in,out,ref] netr_Credential *credentials,
[in,ref] netr_Credential *credentials,
[out,ref] netr_Credential *return_credentials,
[in,out,ref] uint32 *negotiate_flags
);