version 1.108, 2005/07/14 17:52:09
|
version 1.109, 2005/07/22 11:18:28
|
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.107 2005/07/04 03:24:00 hallvard Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.108 2005/07/14 17:52:09 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 52 root_dse_info(
|
Line 52 root_dse_info(
|
const char **text ) |
const char **text ) |
{ |
{ |
Entry *e; |
Entry *e; |
struct berval val, *bv; |
struct berval val; |
|
#ifdef LDAP_SLAPI |
|
struct berval *bv; |
|
#endif |
int i, j; |
int i, j; |
char ** supportedSASLMechanisms; |
char ** supportedSASLMechanisms; |
BackendDB *be; |
BackendDB *be; |
Line 63 root_dse_info(
|
Line 66 root_dse_info(
|
= slap_schema.si_ad_objectClass; |
= slap_schema.si_ad_objectClass; |
AttributeDescription *ad_namingContexts |
AttributeDescription *ad_namingContexts |
= slap_schema.si_ad_namingContexts; |
= slap_schema.si_ad_namingContexts; |
|
#ifdef LDAP_SLAPI |
AttributeDescription *ad_supportedExtension |
AttributeDescription *ad_supportedExtension |
= slap_schema.si_ad_supportedExtension; |
= slap_schema.si_ad_supportedExtension; |
|
#endif |
AttributeDescription *ad_supportedLDAPVersion |
AttributeDescription *ad_supportedLDAPVersion |
= slap_schema.si_ad_supportedLDAPVersion; |
= slap_schema.si_ad_supportedLDAPVersion; |
AttributeDescription *ad_supportedSASLMechanisms |
AttributeDescription *ad_supportedSASLMechanisms |