mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
60802201e3
SASL mech removed from backend bind callback (as SASL is managed by frontend) Changes to some backends are untested (as I don't have all dependent software install)
23 lines
554 B
C
23 lines
554 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,
|
|
const char *base, const char *nbase,
|
|
int scope, int deref, int slimit, int tlimit,
|
|
Filter *f, const 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 */
|
|
|