mirror of
https://github.com/samba-team/samba.git
synced 2024-12-22 13:34:15 +03:00
auth3: Make it a bit easier to #include "source3/include/auth.h"
Avoid using "uchar" in source3/auth/proto.h, this is #defined in includes.h Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
e6c6407623
commit
c6ccf1b91b
@ -180,9 +180,9 @@ bool make_user_info_netlogon_network(TALLOC_CTX *mem_ctx,
|
||||
const struct tsocket_address *remote_address,
|
||||
const struct tsocket_address *local_address,
|
||||
uint32_t logon_parameters,
|
||||
const uchar *lm_network_pwd,
|
||||
const unsigned char *lm_network_pwd,
|
||||
int lm_pwd_len,
|
||||
const uchar *nt_network_pwd,
|
||||
const unsigned char *nt_network_pwd,
|
||||
int nt_pwd_len);
|
||||
bool make_user_info_netlogon_interactive(TALLOC_CTX *mem_ctx,
|
||||
struct auth_usersupplied_info **user_info,
|
||||
@ -192,9 +192,9 @@ bool make_user_info_netlogon_interactive(TALLOC_CTX *mem_ctx,
|
||||
const struct tsocket_address *remote_address,
|
||||
const struct tsocket_address *local_address,
|
||||
uint32_t logon_parameters,
|
||||
const uchar chal[8],
|
||||
const uchar lm_interactive_pwd[16],
|
||||
const uchar nt_interactive_pwd[16]);
|
||||
const unsigned char chal[8],
|
||||
const unsigned char lm_interactive_pwd[16],
|
||||
const unsigned char nt_interactive_pwd[16]);
|
||||
bool make_user_info_for_reply(TALLOC_CTX *mem_ctx,
|
||||
struct auth_usersupplied_info **user_info,
|
||||
const char *smb_name,
|
||||
|
Loading…
Reference in New Issue
Block a user