version 1.33, 2000/05/16 16:13:08
|
version 1.34, 2000/05/21 20:46:51
|
Line 1
|
Line 1
|
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.32 2000/05/16 14:22:52 kurt Exp $ */ |
/* $OpenLDAP: pkg/ldap/servers/slapd/root_dse.c,v 1.33 2000/05/16 16:13:08 kurt Exp $ */ |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
/* root_dse.c - Provides the ROOT DSA-Specific Entry |
* |
* |
* Copyright 1999-2000 The OpenLDAP Foundation. |
* Copyright 1999-2000 The OpenLDAP Foundation. |
Line 33 root_dse_info( Entry **entry, char **tex
|
Line 33 root_dse_info( Entry **entry, char **tex
|
AttributeDescription *ad_supportedExtension = slap_schema.si_ad_supportedExtension; |
AttributeDescription *ad_supportedExtension = slap_schema.si_ad_supportedExtension; |
AttributeDescription *ad_supportedLDAPVersion = slap_schema.si_ad_supportedLDAPVersion; |
AttributeDescription *ad_supportedLDAPVersion = slap_schema.si_ad_supportedLDAPVersion; |
AttributeDescription *ad_supportedSASLMechanisms = slap_schema.si_ad_supportedSASLMechanisms; |
AttributeDescription *ad_supportedSASLMechanisms = slap_schema.si_ad_supportedSASLMechanisms; |
#ifdef SLAPD_ACI_ENABLED |
# ifdef SLAPD_ACI_ENABLED |
AttributeDescription *ad_supportedACIMechanisms = slap_schema.si_ad_supportedACIMechanisms; |
AttributeDescription *ad_supportedACIMechanisms = slap_schema.si_ad_supportedACIMechanisms; |
#endif |
# endif |
AttributeDescription *ad_ref = slap_schema.si_ad_ref; |
AttributeDescription *ad_ref = slap_schema.si_ad_ref; |
#else |
#else |
char *ad_objectClass = "objectClass"; |
char *ad_objectClass = "objectClass"; |
Line 44 root_dse_info( Entry **entry, char **tex
|
Line 44 root_dse_info( Entry **entry, char **tex
|
char *ad_supportedExtension = "supportedExtension"; |
char *ad_supportedExtension = "supportedExtension"; |
char *ad_supportedLDAPVersion = "supportedLDAPVersion"; |
char *ad_supportedLDAPVersion = "supportedLDAPVersion"; |
char *ad_supportedSASLMechanisms = "supportedSASLMechanisms"; |
char *ad_supportedSASLMechanisms = "supportedSASLMechanisms"; |
#ifdef SLAPD_ACI_ENABLED |
# ifdef SLAPD_ACI_ENABLED |
char *ad_supportedACIMechanisms = "supportedACIMechanisms"; |
char *ad_supportedACIMechanisms = "supportedACIMechanisms"; |
#endif |
# endif |
char *ad_ref = "ref"; |
char *ad_ref = "ref"; |
#endif |
#endif |
|
|