summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2001-04-12 22:15:57 +0000
committerGerald Carter <jerry@samba.org>2001-04-12 22:15:57 +0000
commitd85924a028f35e4789c70c068f903d677caf7ca0 (patch)
tree1e7797ce52cf70762a2f7ae2fe3ec32ef67b52fa
parentc032fb5121608dcaaec47244893e6888b21715fe (diff)
downloadsamba-d85924a028f35e4789c70c068f903d677caf7ca0.tar.gz
samba-d85924a028f35e4789c70c068f903d677caf7ca0.tar.bz2
samba-d85924a028f35e4789c70c068f903d677caf7ca0.zip
forgot one thing
(This used to be commit a17f2471571596e97b212ff9de1c8b45dac12eb6)
-rw-r--r--source3/include/passdb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/include/passdb.h b/source3/include/passdb.h
index 89cb35bd14..302e69105f 100644
--- a/source3/include/passdb.h
+++ b/source3/include/passdb.h
@@ -49,6 +49,10 @@ struct passdb_ops {
BOOL (*update_sam_account) (SAM_ACCOUNT* sampass, BOOL override);
BOOL (*delete_sam_account) (char* username);
BOOL (*add_sam_account) (SAM_ACCOUNT* sampass);
+
+ /* authenticate a user */
+ SAM_ACCOUNT* (*logon_user) (char* username, char* domain, char* lm_pw,
+ int lm_pw_len, char* nt_pw, int nt_pw_len, char* clear_pass);
};