summaryrefslogtreecommitdiffstats
path: root/server/providers/ldap/sdap_async.h
diff options
context:
space:
mode:
authorSumit Bose <sbose@redhat.com>2009-07-20 17:27:02 +0200
committerSimo Sorce <ssorce@redhat.com>2009-07-21 14:41:55 -0400
commit7288cbac65aba0c74f51cd9b69a69cb80f1ec8e4 (patch)
treeee301b023b1acaa7f514780ba07d374c974fe836 /server/providers/ldap/sdap_async.h
parent9032621aa815bcdb7c590eed19a156aeac1ae94b (diff)
downloadsssd-7288cbac65aba0c74f51cd9b69a69cb80f1ec8e4.tar.gz
sssd-7288cbac65aba0c74f51cd9b69a69cb80f1ec8e4.tar.xz
sssd-7288cbac65aba0c74f51cd9b69a69cb80f1ec8e4.zip
added LDAP change password backend target
Diffstat (limited to 'server/providers/ldap/sdap_async.h')
-rw-r--r--server/providers/ldap/sdap_async.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/server/providers/ldap/sdap_async.h b/server/providers/ldap/sdap_async.h
index 6ed953204..4012729ce 100644
--- a/server/providers/ldap/sdap_async.h
+++ b/server/providers/ldap/sdap_async.h
@@ -85,3 +85,11 @@ struct tevent_req *sdap_get_initgr_send(TALLOC_CTX *memctx,
const char *name,
const char **grp_attrs);
int sdap_get_initgr_recv(struct tevent_req *req);
+
+struct tevent_req *sdap_exop_modify_passwd_send(TALLOC_CTX *memctx,
+ struct tevent_context *ev,
+ struct sdap_handle *sh,
+ char *user_dn,
+ char *password,
+ char *new_password);
+int sdap_exop_modify_passwd_recv(struct tevent_req *req, enum sdap_result *result);