Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
orbea -
OpenLDAP
Commits
d0b796f8
Commit
d0b796f8
authored
May 02, 2006
by
Howard Chu
Browse files
ITS#4515 add missing equality rules
parent
af1f87b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/bconfig.c
View file @
d0b796f8
...
...
@@ -342,6 +342,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsBoolean SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"limits"
,
"limits"
,
2
,
0
,
0
,
ARG_DB
|
ARG_MAGIC
|
CFG_LIMITS
,
&
config_generic
,
"( OLcfgDbAt:0.5 NAME 'olcLimits' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )"
,
NULL
,
NULL
},
{
"localSSF"
,
"ssf"
,
2
,
2
,
0
,
ARG_INT
,
&
local_ssf
,
"( OLcfgGlAt:26 NAME 'olcLocalSSF' "
...
...
@@ -351,6 +352,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDirectoryString SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"loglevel"
,
"level"
,
2
,
0
,
0
,
ARG_MAGIC
,
&
config_loglevel
,
"( OLcfgGlAt:28 NAME 'olcLogLevel' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"maxDerefDepth"
,
"depth"
,
2
,
2
,
0
,
ARG_DB
|
ARG_INT
|
ARG_MAGIC
|
CFG_DEPTH
,
&
config_generic
,
"( OLcfgDbAt:0.6 NAME 'olcMaxDerefDepth' "
...
...
@@ -365,6 +367,7 @@ static ConfigTable config_back_cf_table[] = {
ARG_IGNORED
,
NULL
,
#endif
"( OLcfgGlAt:30 NAME 'olcModuleLoad' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )"
,
NULL
,
NULL
},
{
"modulepath"
,
"path"
,
2
,
2
,
0
,
#ifdef SLAPD_MODULES
...
...
@@ -382,6 +385,7 @@ static ConfigTable config_back_cf_table[] = {
NULL
,
NULL
},
{
"objectidentifier"
,
NULL
,
0
,
0
,
0
,
ARG_MAGIC
|
CFG_OID
,
&
config_generic
,
"( OLcfgGlAt:33 NAME 'olcObjectIdentifier' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString X-ORDERED 'VALUES' )"
,
NULL
,
NULL
},
{
"overlay"
,
"overlay"
,
2
,
2
,
0
,
ARG_MAGIC
,
&
config_overlay
,
"( OLcfgGlAt:34 NAME 'olcOverlay' "
...
...
@@ -391,6 +395,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDirectoryString SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"password-hash"
,
"hash"
,
2
,
2
,
0
,
ARG_MAGIC
,
&
config_passwd_hash
,
"( OLcfgGlAt:36 NAME 'olcPasswordHash' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"pidfile"
,
"file"
,
2
,
2
,
0
,
ARG_STRING
,
&
slapd_pid_file
,
"( OLcfgGlAt:37 NAME 'olcPidFile' "
...
...
@@ -402,6 +407,7 @@ static ConfigTable config_back_cf_table[] = {
ARG_IGNORED
,
NULL
,
#endif
"( OLcfgGlAt:38 NAME 'olcPlugin' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"pluginlog"
,
"filename"
,
2
,
2
,
0
,
#ifdef LDAP_SLAPI
...
...
@@ -419,6 +425,7 @@ static ConfigTable config_back_cf_table[] = {
"SUP labeledURI SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"replica"
,
"host or uri"
,
2
,
0
,
0
,
ARG_DB
|
ARG_MAGIC
,
&
config_replica
,
"( OLcfgDbAt:0.7 NAME 'olcReplica' "
"EQUALITY caseIgnoreMatch "
"SUP labeledURI X-ORDERED 'VALUES' )"
,
NULL
,
NULL
},
{
"replica-argsfile"
,
NULL
,
0
,
0
,
0
,
ARG_MAY_DB
|
ARG_MAGIC
|
ARG_STRING
|
CFG_REPLICA_ARGSFILE
,
&
config_generic
,
"( OLcfgGlAt:43 NAME 'olcReplicaArgsFile' "
...
...
@@ -434,9 +441,11 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDirectoryString SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"require"
,
"features"
,
2
,
0
,
7
,
ARG_MAY_DB
|
ARG_MAGIC
,
&
config_requires
,
"( OLcfgGlAt:47 NAME 'olcRequires' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"restrict"
,
"op_list"
,
2
,
0
,
0
,
ARG_MAY_DB
|
ARG_MAGIC
,
&
config_restrict
,
"( OLcfgGlAt:48 NAME 'olcRestrict' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"reverse-lookup"
,
"on|off"
,
2
,
2
,
0
,
#ifdef SLAPD_RLOOKUPS
...
...
@@ -451,6 +460,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDN SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"rootDSE"
,
"file"
,
2
,
2
,
0
,
ARG_MAGIC
|
CFG_ROOTDSE
,
&
config_generic
,
"( OLcfgGlAt:51 NAME 'olcRootDSE' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"rootpw"
,
"password"
,
2
,
2
,
0
,
ARG_BERVAL
|
ARG_DB
|
ARG_MAGIC
,
&
config_rootpw
,
"( OLcfgDbAt:0.9 NAME 'olcRootPW' "
...
...
@@ -490,6 +500,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDN SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"security"
,
"factors"
,
2
,
0
,
0
,
ARG_MAY_DB
|
ARG_MAGIC
,
&
config_security
,
"( OLcfgGlAt:59 NAME 'olcSecurity' "
"EQUALITY caseIgnoreMatch "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
{
"sizelimit"
,
"limit"
,
2
,
0
,
0
,
ARG_MAY_DB
|
ARG_MAGIC
,
&
config_sizelimit
,
"( OLcfgGlAt:60 NAME 'olcSizeLimit' "
...
...
@@ -510,9 +521,10 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDirectoryString SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"subordinate"
,
"[advertise]"
,
1
,
2
,
0
,
ARG_DB
|
ARG_MAGIC
,
&
config_subordinate
,
"( OLcfgDbAt:0.15 NAME 'olcSubordinate' "
"SYNTAX OMsDirectoryString )"
,
NULL
,
NULL
},
"SYNTAX OMsDirectoryString
SINGLE-VALUE
)"
,
NULL
,
NULL
},
{
"suffix"
,
"suffix"
,
2
,
2
,
0
,
ARG_DB
|
ARG_DN
|
ARG_QUOTE
|
ARG_MAGIC
,
&
config_suffix
,
"( OLcfgDbAt:0.10 NAME 'olcSuffix' "
"EQUALITY distinguishedNameMatch "
"SYNTAX OMsDN )"
,
NULL
,
NULL
},
{
"syncrepl"
,
NULL
,
0
,
0
,
0
,
ARG_DB
|
ARG_MAGIC
,
&
syncrepl_config
,
"( OLcfgDbAt:0.11 NAME 'olcSyncrepl' "
...
...
@@ -610,6 +622,7 @@ static ConfigTable config_back_cf_table[] = {
"SYNTAX OMsDN SINGLE-VALUE )"
,
NULL
,
NULL
},
{
"updateref"
,
"url"
,
2
,
2
,
0
,
ARG_DB
|
ARG_MAGIC
,
&
config_updateref
,
"( OLcfgDbAt:0.13 NAME 'olcUpdateRef' "
"EQUALITY caseIgnoreMatch "
"SUP labeledURI )"
,
NULL
,
NULL
},
{
NULL
,
NULL
,
0
,
0
,
0
,
ARG_IGNORED
,
NULL
,
NULL
,
NULL
,
NULL
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment