summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-04-11 15:25:06 +0200
committerVolker Lendecke <vl@samba.org>2010-04-11 22:59:47 +0200
commitb8829e74fd0386931c1a5845337efff25fec72c2 (patch)
treecd2e1b09a095eda1ea2d6391e1c2fad2fb5b791a /source3/include
parent18909879cc100b958d74c78ff9f84e9ba3318340 (diff)
downloadsamba-b8829e74fd0386931c1a5845337efff25fec72c2.tar.gz
samba-b8829e74fd0386931c1a5845337efff25fec72c2.tar.bz2
samba-b8829e74fd0386931c1a5845337efff25fec72c2.zip
s3: Move [make|free]_user_info to auth/user_info.c
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index eefde96911..930dcc8541 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -154,6 +154,20 @@ void free_user_info(struct auth_usersupplied_info **user_info);
bool make_auth_methods(struct auth_context *auth_context, auth_methods **auth_method) ;
bool is_trusted_domain(const char* dom_name);
+/* The following definitions come from auth/user_info.c */
+
+NTSTATUS make_user_info(struct auth_usersupplied_info **user_info,
+ const char *smb_name,
+ const char *internal_username,
+ const char *client_domain,
+ const char *domain,
+ const char *wksta_name,
+ DATA_BLOB *lm_pwd, DATA_BLOB *nt_pwd,
+ DATA_BLOB *lm_interactive_pwd, DATA_BLOB *nt_interactive_pwd,
+ DATA_BLOB *plaintext,
+ bool encrypted);
+void free_user_info(struct auth_usersupplied_info **user_info);
+
/* The following definitions come from auth/auth_winbind.c */
NTSTATUS auth_winbind_init(void);