version 1.109, 2005/07/22 11:18:28
|
version 1.110, 2005/08/12 19:24:13
|
Line 1
|
Line 1
|
/* root_dse.c - Provides the Root DSA-Specific Entry */ |
/* root_dse.c - Provides the Root DSA-Specific Entry */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.108 2005/07/14 17:52:09 hallvard Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.109 2005/07/22 11:18:28 hallvard Exp $ */ |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
/* This work is part of OpenLDAP Software <http://www.openldap.org/>. |
* |
* |
* Copyright 1999-2005 The OpenLDAP Foundation. |
* Copyright 1999-2005 The OpenLDAP Foundation. |
Line 29
|
Line 29
|
#endif |
#endif |
|
|
static struct berval supportedFeatures[] = { |
static struct berval supportedFeatures[] = { |
|
BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */ |
BER_BVC(LDAP_FEATURE_ALL_OP_ATTRS), /* All Op Attrs (+) */ |
BER_BVC(LDAP_FEATURE_ALL_OP_ATTRS), /* All Op Attrs (+) */ |
BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (@class) */ |
BER_BVC(LDAP_FEATURE_OBJECTCLASS_ATTRS), /* OCs in Attrs List (@class) */ |
BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */ |
BER_BVC(LDAP_FEATURE_ABSOLUTE_FILTERS), /* (&) and (|) search filters */ |
Line 37 static struct berval supportedFeatures[]
|
Line 38 static struct berval supportedFeatures[]
|
#ifdef LDAP_FEATURE_SUBORDINATE_SCOPE |
#ifdef LDAP_FEATURE_SUBORDINATE_SCOPE |
BER_BVC(LDAP_FEATURE_SUBORDINATE_SCOPE), /* "children" search scope */ |
BER_BVC(LDAP_FEATURE_SUBORDINATE_SCOPE), /* "children" search scope */ |
#endif |
#endif |
#ifdef LDAP_FEATURE_MODIFY_INCREMENT |
|
BER_BVC(LDAP_FEATURE_MODIFY_INCREMENT), /* Modify/increment */ |
|
#endif |
|
{0,NULL} |
{0,NULL} |
}; |
}; |
|
|