diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-05-17 19:04:31 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-08-14 11:58:13 +1000 |
commit | 70211ea6a3517cb64f18fe7768078e7d51c51ca1 (patch) | |
tree | 1173ab9a51b1813facb2b2bff5acea4fa7e07865 /source3/include | |
parent | b1b9752506e73766ec66c3c5d26797e9f0112527 (diff) | |
download | samba-70211ea6a3517cb64f18fe7768078e7d51c51ca1.tar.gz samba-70211ea6a3517cb64f18fe7768078e7d51c51ca1.tar.bz2 samba-70211ea6a3517cb64f18fe7768078e7d51c51ca1.zip |
s3:auth Change winbindd -> auth interface to more standard structures
This removes conversions to and from the source3 varient of the
server_info structure when replaced in s3compat, and presents a tidier
interface to winbindd in any case.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 02faf880ec..0a417ab043 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -66,6 +66,10 @@ NTSTATUS check_sam_security(const DATA_BLOB *challenge, TALLOC_CTX *mem_ctx, const struct auth_usersupplied_info *user_info, struct auth_serversupplied_info **server_info); +NTSTATUS check_sam_security_info3(const DATA_BLOB *challenge, + TALLOC_CTX *mem_ctx, + const struct auth_usersupplied_info *user_info, + struct netr_SamInfo3 **pinfo3); NTSTATUS auth_sam_init(void); /* The following definitions come from auth/auth_server.c */ |