mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 08:39:37 -05:00
Added static ppolicy, refinit, unique overlays
This commit is contained in:
parent
7fb90589af
commit
a2a2ccf848
1 changed files with 18 additions and 0 deletions
|
|
@ -36,12 +36,21 @@ extern int dyngroup_init();
|
|||
#if SLAPD_OVER_LASTMOD == SLAPD_MOD_STATIC
|
||||
extern int lastmod_init();
|
||||
#endif
|
||||
#if SLAPD_OVER_PPOLICY == SLAPD_MOD_STATIC
|
||||
extern int ppolicy_init();
|
||||
#endif
|
||||
#if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
|
||||
extern int pcache_init();
|
||||
#endif
|
||||
#if SLAPD_OVER_REFINT == SLAPD_MOD_STATIC
|
||||
extern int refint_init();
|
||||
#endif
|
||||
#if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
|
||||
extern int rwm_init();
|
||||
#endif
|
||||
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
|
||||
extern int unique_init();
|
||||
#endif
|
||||
|
||||
static struct {
|
||||
char *name;
|
||||
|
|
@ -59,11 +68,20 @@ static struct {
|
|||
#if SLAPD_OVER_LASTMOD == SLAPD_MOD_STATIC
|
||||
{ "Last Modification", lastmod_init },
|
||||
#endif
|
||||
#if SLAPD_OVER_PPOLICY == SLAPD_MOD_STATIC
|
||||
{ "Password Policy", ppolicy_init },
|
||||
#endif
|
||||
#if SLAPD_OVER_PROXYCACHE == SLAPD_MOD_STATIC
|
||||
{ "Proxy Cache", pcache_init },
|
||||
#endif
|
||||
#if SLAPD_OVER_REFINT == SLAPD_MOD_STATIC
|
||||
{ "Referential Integrity", refint_init },
|
||||
#endif
|
||||
#if SLAPD_OVER_RWM == SLAPD_MOD_STATIC
|
||||
{ "Rewrite/Remap", rwm_init },
|
||||
#endif
|
||||
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC
|
||||
{ "Attribute Uniqueness", unique_init },
|
||||
#endif
|
||||
{ NULL, NULL }
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue