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.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/include/smbldap.h b/source3/include/smbldap.h
index c669f77425..987206b450 100644
--- a/source3/include/smbldap.h
+++ b/source3/include/smbldap.h
@@ -19,6 +19,8 @@
*/
+#ifdef HAVE_LDAP
+
#ifndef _SMBLDAP_H
#define _SMBLDAP_H
@@ -100,4 +102,16 @@ extern ATTRIB_MAP_ENTRY groupmap_attr_list_to_delete[];
extern ATTRIB_MAP_ENTRY idpool_attr_list[];
extern ATTRIB_MAP_ENTRY sidmap_attr_list[];
+/* Function declarations -- not included in proto.h so we don't
+ have to worry about LDAP structure types */
+
+const char* get_attr_key2string( ATTRIB_MAP_ENTRY table[], int key );
+char** get_attr_list( ATTRIB_MAP_ENTRY table[] );
+void free_attr_list( char **list );
+BOOL fetch_ldap_pw(char **dn, char** pw);
+void ldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const char *value);
+
+
#endif /* _SMBLDAP_H */
+
+#endif /* HAVE_LDAP */