summaryrefslogtreecommitdiff
path: root/source3/include/smbldap.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/smbldap.h')
-rw-r--r--source3/include/smbldap.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/source3/include/smbldap.h b/source3/include/smbldap.h
index d005104dea..e6a6a1b7c6 100644
--- a/source3/include/smbldap.h
+++ b/source3/include/smbldap.h
@@ -155,6 +155,31 @@ struct smbldap_state {
struct timeval last_rebind;
};
+/* struct used by both pdb_ldap.c and pdb_nds.c */
+
+struct ldapsam_privates {
+ struct smbldap_state *smbldap_state;
+
+ /* Former statics */
+ LDAPMessage *result;
+ LDAPMessage *entry;
+ int index;
+
+ const char *domain_name;
+ DOM_SID domain_sid;
+
+ /* configuration items */
+ int schema_ver;
+
+ char *domain_dn;
+
+ /* Is this NDS ldap? */
+ int is_nds_ldap;
+
+ /* ldap server location parameter */
+ char *location;
+};
+
#endif /* HAVE_LDAP */
struct smbldap_state;