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
openldap
OpenLDAP
Commits
508890e7
Commit
508890e7
authored
May 03, 2001
by
Kurt Zeilenga
Browse files
Add telephone number indexing support (reuse only)
parent
a43cc024
Changes
1
Hide whitespace changes
Inline
Side-by-side
servers/slapd/schema_init.c
View file @
508890e7
...
...
@@ -84,6 +84,11 @@
#define integerIndexer caseIgnoreIA5Indexer
#define integerFilter caseIgnoreIA5Filter
#define telephoneNumberIndexer caseIgnoreIA5Indexer
#define telephoneNumberFilter caseIgnoreIA5Filter
#define telephoneNumberSubstringsIndexer caseIgnoreIA5SubstringsIndexer
#define telephoneNumberSubstringsFilter caseIgnoreIA5SubstringsFilter
static
char
*
strcasechr
(
const
char
*
str
,
int
c
)
{
char
*
lower
=
strchr
(
str
,
TOLOWER
(
c
)
);
...
...
@@ -4477,14 +4482,18 @@ struct mrule_defs_rec mrule_defs[] = {
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.50 )"
,
SLAP_MR_EQUALITY
|
SLAP_MR_EXT
,
NULL
,
NULL
,
telephoneNumberMatch
,
NULL
,
NULL
,
telephoneNumberMatch
,
telephoneNumberIndexer
,
telephoneNumberFilter
,
NULL
},
{
"( 2.5.13.21 NAME 'telephoneNumberSubstringsMatch' "
"SYNTAX 1.3.6.1.4.1.1466.115.121.1.58 )"
,
SLAP_MR_SUBSTR
|
SLAP_MR_EXT
,
NULL
,
NULL
,
telephoneNumberSubstringsMatch
,
NULL
,
NULL
,
telephoneNumberSubstringsMatch
,
telephoneNumberSubstringsIndexer
,
telephoneNumberSubstringsFilter
,
NULL
},
{
"( 2.5.13.22 NAME 'presentationAddressMatch' "
...
...
Write
Preview
Supports
Markdown
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