Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jaak Ristioja
OpenLDAP
Commits
5594efab
Commit
5594efab
authored
24 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Provide caseExactIA5SubstringsMatch using OpenLDAP OID
parent
b21ba524
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
servers/slapd/schema_init.c
+11
-4
11 additions, 4 deletions
servers/slapd/schema_init.c
with
11 additions
and
4 deletions
servers/slapd/schema_init.c
+
11
−
4
View file @
5594efab
...
...
@@ -1667,7 +1667,7 @@ struct mrule_defs_rec {
};
/*
* Other matching rules in X.520 that we do not use:
* Other matching rules in X.520 that we do not use
(yet)
:
*
* 2.5.13.9 numericStringOrderingMatch
* 2.5.13.13 booleanMatch
...
...
@@ -1720,7 +1720,6 @@ struct mrule_defs_rec mrule_defs[] = {
NULL
,
NULL
,
caseIgnoreSubstringsMatch
,
caseIgnoreSubstringsIndexer
,
caseIgnoreSubstringsFilter
},
/* Next three are not in the RFC's, but are needed for compatibility */
{
"( 2.5.13.5 NAME 'caseExactMatch' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.15 )"
,
SLAP_MR_EQUALITY
|
SLAP_MR_EXT
,
...
...
@@ -1826,12 +1825,14 @@ struct mrule_defs_rec mrule_defs[] = {
{
"( 1.3.6.1.4.1.1466.109.114.1 NAME 'caseExactIA5Match' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )"
,
SLAP_MR_EQUALITY
|
SLAP_MR_EXT
,
NULL
,
NULL
,
caseExactIA5Match
,
caseExactIA5Indexer
,
caseExactIA5Filter
},
NULL
,
NULL
,
caseExactIA5Match
,
caseExactIA5Indexer
,
caseExactIA5Filter
},
{
"( 1.3.6.1.4.1.1466.109.114.2 NAME 'caseIgnoreIA5Match' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )"
,
SLAP_MR_EQUALITY
|
SLAP_MR_EXT
,
NULL
,
NULL
,
caseIgnoreIA5Match
,
caseExactIA5Indexer
,
caseExactIA5Filter
},
NULL
,
NULL
,
caseIgnoreIA5Match
,
caseExactIA5Indexer
,
caseExactIA5Filter
},
{
"( 1.3.6.1.4.1.1466.109.114.3 NAME 'caseIgnoreIA5SubstringsMatch' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )"
,
...
...
@@ -1839,6 +1840,12 @@ struct mrule_defs_rec mrule_defs[] = {
NULL
,
NULL
,
caseIgnoreIA5SubstringsMatch
,
caseIgnoreIA5SubstringsIndexer
,
caseIgnoreIA5SubstringsFilter
},
{
"( 1.3.6.1.4.1.4203.666.4.3 NAME 'caseExactIA5SubstringsMatch' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.26 )"
,
SLAP_MR_SUBSTR
,
NULL
,
NULL
,
caseExactIA5SubstringsMatch
,
caseExactIA5SubstringsIndexer
,
caseExactIA5SubstringsFilter
},
{
"( 1.3.6.1.4.1.4203.666.4.1 NAME 'authPasswordMatch' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.40 )"
,
SLAP_MR_EQUALITY
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment