mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-15 03:01:09 +08:00
f991ef04e6
and back-ldbm are preserved, they only use the up-cased DNs. back-passwd uses the mixed-case DN. All others are using mixed-case DN, may need more fixing.
21 lines
534 B
C
21 lines
534 B
C
/* $OpenLDAP$ */
|
|
#ifndef _PASSWD_EXTERNAL_H
|
|
#define _PASSWD_EXTERNAL_H
|
|
|
|
LDAP_BEGIN_DECL
|
|
|
|
extern int passwd_back_initialize LDAP_P(( BackendInfo *bi ));
|
|
|
|
extern int passwd_back_search LDAP_P(( BackendDB *be,
|
|
Connection *c, Operation *o, char *base,
|
|
char *nbase, int scope, int deref, int slimit, int tlimit,
|
|
Filter *f, char *filterstr, char **attrs, int attrsonly));
|
|
|
|
extern int passwd_back_db_config LDAP_P((BackendDB *bd,
|
|
const char *fname, int lineno, int argc, char **argv ));
|
|
|
|
LDAP_END_DECL
|
|
|
|
#endif /* _PASSWD_EXTERNAL_H */
|
|
|