mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-30 11:39:34 -05:00
declare ldap_[parse_]passwd
This commit is contained in:
parent
a66c98705e
commit
fb3ca13aef
1 changed files with 29 additions and 0 deletions
|
|
@ -1707,5 +1707,34 @@ ldap_whoami_s LDAP_P((
|
|||
LDAPControl **sctrls,
|
||||
LDAPControl **cctrls ));
|
||||
|
||||
/*
|
||||
* in passwd.c
|
||||
*/
|
||||
|
||||
LDAP_F( int )
|
||||
ldap_parse_passwd LDAP_P((
|
||||
LDAP *ld,
|
||||
LDAPMessage *res,
|
||||
struct berval *newpasswd ));
|
||||
|
||||
LDAP_F( int )
|
||||
ldap_passwd LDAP_P(( LDAP *ld,
|
||||
struct berval *user,
|
||||
struct berval *oldpw,
|
||||
struct berval *newpw,
|
||||
LDAPControl **sctrls,
|
||||
LDAPControl **cctrls,
|
||||
int *msgidp ));
|
||||
|
||||
LDAP_F( int )
|
||||
ldap_passwd_s LDAP_P((
|
||||
LDAP *ld,
|
||||
struct berval *user,
|
||||
struct berval *oldpw,
|
||||
struct berval *newpw,
|
||||
struct berval *newpasswd,
|
||||
LDAPControl **sctrls,
|
||||
LDAPControl **cctrls ));
|
||||
|
||||
LDAP_END_DECL
|
||||
#endif /* _LDAP_H */
|
||||
|
|
|
|||
Loading…
Reference in a new issue