version 1.12.2.5, 2005/08/09 21:04:07
|
version 1.12.2.6, 2005/08/25 05:01:19
|
Line 1
|
Line 1
|
/* overlays.c - Static overlay framework */ |
/* overlays.c - Static overlay framework */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/overlays.c,v 1.19 2005/08/01 21:40:40 ando Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/overlays/overlays.c,v 1.22 2005/08/23 06:52:01 hyc 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 65 extern int translucent_init();
|
Line 65 extern int translucent_init();
|
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
extern int unique_init(); |
extern int unique_init(); |
#endif |
#endif |
|
#if SLAPD_OVER_VALSORT == SLAPD_MOD_STATIC |
|
extern int valsort_init(); |
|
#endif |
|
|
static struct { |
static struct { |
char *name; |
char *name; |
Line 112 static struct {
|
Line 115 static struct {
|
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
#if SLAPD_OVER_UNIQUE == SLAPD_MOD_STATIC |
{ "Attribute Uniqueness", unique_init }, |
{ "Attribute Uniqueness", unique_init }, |
#endif |
#endif |
|
#if SLAPD_OVER_VALSORT == SLAPD_MOD_STATIC |
|
{ "Value Sorting", valsort_init }, |
|
#endif |
{ NULL, NULL } |
{ NULL, NULL } |
}; |
}; |
|
|