mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 21:50:49 -05:00
ITS#8286 - Add missing matching rules
Add missing matching rules for the cn=config schema elements for: slapd-null slapd-relay slapo-chain
This commit is contained in:
parent
6c177e6629
commit
bc61773904
3 changed files with 6 additions and 0 deletions
|
|
@ -1239,12 +1239,14 @@ static ConfigTable chaincfg[] = {
|
|||
2, 4, 0, ARG_MAGIC|ARG_BERVAL|CH_CHAINING, chain_cf_gen,
|
||||
"( OLcfgOvAt:3.1 NAME 'olcChainingBehavior' "
|
||||
"DESC 'Chaining behavior control parameters (draft-sermersheim-ldap-chaining)' "
|
||||
"EQUALITY caseIgnoreMatch "
|
||||
"SYNTAX OMsDirectoryString SINGLE-VALUE )", NULL, NULL },
|
||||
#endif /* LDAP_CONTROL_X_CHAINING_BEHAVIOR */
|
||||
{ "chain-cache-uri", "TRUE/FALSE",
|
||||
2, 2, 0, ARG_MAGIC|ARG_ON_OFF|CH_CACHE_URI, chain_cf_gen,
|
||||
"( OLcfgOvAt:3.2 NAME 'olcChainCacheURI' "
|
||||
"DESC 'Enables caching of URIs not present in configuration' "
|
||||
"EQUALITY booleanMatch "
|
||||
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
||||
{ "chain-max-depth", "args",
|
||||
2, 2, 0, ARG_MAGIC|ARG_INT|CH_MAX_DEPTH, chain_cf_gen,
|
||||
|
|
@ -1257,6 +1259,7 @@ static ConfigTable chaincfg[] = {
|
|||
2, 2, 0, ARG_MAGIC|ARG_ON_OFF|CH_RETURN_ERR, chain_cf_gen,
|
||||
"( OLcfgOvAt:3.4 NAME 'olcChainReturnError' "
|
||||
"DESC 'Errors are returned instead of the original referral' "
|
||||
"EQUALITY booleanMatch "
|
||||
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
||||
{ NULL, NULL, 0, 0, 0, ARG_IGNORED }
|
||||
};
|
||||
|
|
|
|||
|
|
@ -38,11 +38,13 @@ static ConfigTable nullcfg[] = {
|
|||
(void *)offsetof(null_info, ni_bind_allowed),
|
||||
"( OLcfgDbAt:8.1 NAME 'olcDbBindAllowed' "
|
||||
"DESC 'Allow binds to this database' "
|
||||
"EQUALITY booleanMatch "
|
||||
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
||||
{ "dosearch", "true|FALSE", 1, 2, 0, ARG_ON_OFF|ARG_OFFSET,
|
||||
(void *)offsetof(null_info, ni_dosearch),
|
||||
"( OLcfgDbAt:8.2 NAME 'olcDbDoSearch' "
|
||||
"DESC 'Return an entry on searches' "
|
||||
"EQUALITY booleanMatch "
|
||||
"SYNTAX OMsBoolean SINGLE-VALUE )", NULL, NULL },
|
||||
{ NULL, NULL, 0, 0, 0, ARG_IGNORED,
|
||||
NULL, NULL, NULL, NULL }
|
||||
|
|
|
|||
|
|
@ -36,6 +36,7 @@ static ConfigTable relaycfg[] = {
|
|||
relay_back_cf, "( OLcfgDbAt:5.1 "
|
||||
"NAME 'olcRelay' "
|
||||
"DESC 'Relay DN' "
|
||||
"EQUALITY distinguishedNameMatch "
|
||||
"SYNTAX OMsDN "
|
||||
"SINGLE-VALUE )",
|
||||
NULL, NULL },
|
||||
|
|
|
|||
Loading…
Reference in a new issue