version 1.12.2.1, 2005/01/20 18:04:04
|
version 1.12.2.2, 2005/03/14 22:25:02
|
Line 1
|
Line 1
|
/* overlays.c - Static overlay framework */ |
/* overlays.c - Static overlay framework */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/overlays.c,v 1.12 2004/11/30 00:40:58 hyc Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/overlays.c,v 1.12.2.1 2005/01/20 18:04:04 kurt Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 2003-2005 The OpenLDAP Foundation. |
* Copyright 2003-2005 The OpenLDAP Foundation. |
Line 50 extern int rwm_init();
|
Line 50 extern int rwm_init();
|
#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC |
#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC |
extern int syncprov_init(); |
extern int syncprov_init(); |
#endif |
#endif |
|
#if SLAPD_OVER_TRANSLUCENT == SLAPD_MOD_STATIC |
|
extern int translucent_init(); |
|
#endif |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
extern int unique_init(); |
extern int unique_init(); |
#endif |
#endif |
Line 85 static struct {
|
Line 88 static struct {
|
#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC |
#if SLAPD_OVER_SYNCPROV == SLAPD_MOD_STATIC |
{ "Syncrepl Provider", syncprov_init }, |
{ "Syncrepl Provider", syncprov_init }, |
#endif |
#endif |
|
#if SLAPD_OVER_TRANSLUCENT == SLAPD_MOD_STATIC |
|
{ "Translucent Proxy", translucent_init }, |
|
#endif |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
{ "Attribute Uniqueness", unique_init }, |
{ "Attribute Uniqueness", unique_init }, |
#endif |
#endif |