declare ldap_[parse_]passwd

This commit is contained in:
Pierangelo Masarati 2003-03-03 21:31:00 +00:00
parent a66c98705e
commit fb3ca13aef

View file

@ -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 */