diff options
author | Günther Deschner <gd@samba.org> | 2011-10-10 21:48:35 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-10-11 10:41:29 +0200 |
commit | 6cc2843dc67174a795fc9a69020853f44fbca4b7 (patch) | |
tree | fa74ce45d4e307b3e34d1a31b6b83d99ad7de9ba | |
parent | a1f4fe7e08ca4fb0441869e73e3cc1af607e8d8b (diff) | |
download | samba-6cc2843dc67174a795fc9a69020853f44fbca4b7.tar.gz samba-6cc2843dc67174a795fc9a69020853f44fbca4b7.tar.bz2 samba-6cc2843dc67174a795fc9a69020853f44fbca4b7.zip |
s3-passdb: split out passdb/pdb_nds.h.
Guenther
-rw-r--r-- | source3/passdb/pdb_ldap.c | 1 | ||||
-rw-r--r-- | source3/passdb/pdb_nds.c | 1 | ||||
-rw-r--r-- | source3/passdb/pdb_nds.h | 39 | ||||
-rw-r--r-- | source3/passdb/proto.h | 15 |
4 files changed, 41 insertions, 15 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index b1f5a620e8..9d6eb451cd 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -61,6 +61,7 @@ #include "smbldap.h" #include "passdb/pdb_ldap.h" +#include "passdb/pdb_nds.h" /********************************************************************** Simple helper function to make stuff better readable diff --git a/source3/passdb/pdb_nds.c b/source3/passdb/pdb_nds.c index 1bb4778306..72d6a3d2a6 100644 --- a/source3/passdb/pdb_nds.c +++ b/source3/passdb/pdb_nds.c @@ -27,6 +27,7 @@ #include "smbldap.h" #include "passdb/pdb_ldap.h" +#include "passdb/pdb_nds.h" #define NMASLDAP_GET_LOGIN_CONFIG_REQUEST "2.16.840.1.113719.1.39.42.100.3" #define NMASLDAP_GET_LOGIN_CONFIG_RESPONSE "2.16.840.1.113719.1.39.42.100.4" 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_ */ diff --git a/source3/passdb/proto.h b/source3/passdb/proto.h index 2cb8476604..714c1d8b23 100644 --- a/source3/passdb/proto.h +++ b/source3/passdb/proto.h @@ -316,21 +316,6 @@ NTSTATUS pdb_delete_secret(const char *secret_name); /* 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); - -/* The following definitions come from passdb/pdb_nds.c */ - NTSTATUS pdb_ipa_init(void); /* The following definitions come from passdb/pdb_util.c */ |