mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-09 02:52:04 +08:00
20 lines
498 B
C
20 lines
498 B
C
|
#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, 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,
|
||
|
char *fname, int lineno, int argc, char **argv ));
|
||
|
|
||
|
LDAP_END_DECL
|
||
|
|
||
|
#endif /* _PASSWD_EXTERNAL_H */
|
||
|
|