From 65e2944c678a7d4d111ee00e9e964fde14b163a6 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Tue, 15 Nov 2011 23:56:38 +0100 Subject: s3-smbldap: extend smbldap_init() with binddn/bindsecret arguments. Guenther --- source3/include/smbldap.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/include') diff --git a/source3/include/smbldap.h b/source3/include/smbldap.h index f7f0de19c8..d8f12bc373 100644 --- a/source3/include/smbldap.h +++ b/source3/include/smbldap.h @@ -32,8 +32,11 @@ struct smbldap_state; NTSTATUS smbldap_init(TALLOC_CTX *mem_ctx, struct tevent_context *tevent_ctx, - const char *location, - struct smbldap_state **smbldap_state); + const char *location, + bool anon, + const char *bind_dn, + const char *bind_secret, + struct smbldap_state **smbldap_state); void smbldap_set_mod (LDAPMod *** modlist, int modop, const char *attribute, const char *value); void smbldap_set_mod_blob(LDAPMod *** modlist, int modop, const char *attribute, const DATA_BLOB *newblob); -- cgit