summaryrefslogtreecommitdiffstats
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
commita17f2471571596e97b212ff9de1c8b45dac12eb6 (patch)
tree58594b0fded1dcdc3f42783876430e1b1f53f7ff
parentff7c5be88a05c0f1858fedb966ccfc038299bbc9 (diff)
downloadsamba-a17f2471571596e97b212ff9de1c8b45dac12eb6.tar.gz
samba-a17f2471571596e97b212ff9de1c8b45dac12eb6.tar.xz
samba-a17f2471571596e97b212ff9de1c8b45dac12eb6.zip
forgot one thing
-rw-r--r--source/include/passdb.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/include/passdb.h b/source/include/passdb.h
index 89cb35bd14b..302e69105f3 100644
--- a/source/include/passdb.h
+++ b/source/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);
};