summaryrefslogtreecommitdiff
path: root/source3/passdb/pdb_nds.h
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2011-10-10 21:48:35 +0200
committerGünther Deschner <gd@samba.org>2011-10-11 10:41:29 +0200
commit6cc2843dc67174a795fc9a69020853f44fbca4b7 (patch)
treefa74ce45d4e307b3e34d1a31b6b83d99ad7de9ba /source3/passdb/pdb_nds.h
parenta1f4fe7e08ca4fb0441869e73e3cc1af607e8d8b (diff)
downloadsamba-6cc2843dc67174a795fc9a69020853f44fbca4b7.tar.gz
samba-6cc2843dc67174a795fc9a69020853f44fbca4b7.tar.bz2
samba-6cc2843dc67174a795fc9a69020853f44fbca4b7.zip
s3-passdb: split out passdb/pdb_nds.h.
Guenther
Diffstat (limited to 'source3/passdb/pdb_nds.h')
-rw-r--r--source3/passdb/pdb_nds.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/source3/passdb/pdb_nds.h b/source3/passdb/pdb_nds.h
new file mode 100644
index 0000000000..e73a3ba42b
--- /dev/null
+++ b/source3/passdb/pdb_nds.h
@@ -0,0 +1,39 @@
+/*
+ Unix SMB/CIFS mplementation.
+ NDS LDAP helper functions for SAMBA
+ Copyright (C) Vince Brimhall 2004-2005
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#ifndef _PASSDB_PDB_NDS_H_
+#define _PASSDB_PDB_NDS_H_
+
+/* The following definitions come from passdb/pdb_nds.c */
+
+struct smbldap_state;
+
+int pdb_nds_get_password(
+ struct smbldap_state *ldap_state,
+ char *object_dn,
+ size_t *pwd_len,
+ char *pwd );
+int pdb_nds_set_password(
+ struct smbldap_state *ldap_state,
+ char *object_dn,
+ const char *pwd );
+NTSTATUS pdb_nds_init(void);
+
+#endif /* _PASSDB_PDB_NDS_H_ */