Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review 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
Christopher Ng
OpenLDAP
Commits
6c1758ae
Commit
6c1758ae
authored
25 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Add matching rule assertion structure to filter union.
parent
7574b70c
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/slap.h
+14
-1
14 additions, 1 deletion
servers/slapd/slap.h
with
14 additions
and
1 deletion
servers/slapd/slap.h
+
14
−
1
View file @
6c1758ae
...
...
@@ -84,6 +84,13 @@ typedef struct ava {
struct
berval
ava_value
;
}
Ava
;
typedef
struct
mra
{
char
*
mra_rule
;
char
*
mra_type
;
char
*
mra_value
;
int
mra_dnattrs
;
}
Mra
;
/*
* represents a search filter
*/
...
...
@@ -97,6 +104,9 @@ typedef struct filter {
/* equality, lessorequal, greaterorequal, approx */
Ava
f_un_ava
;
/* extensible */
Mra
f_un_fra
;
/* and, or, not */
struct
filter
*
f_un_complex
;
...
...
@@ -112,6 +122,10 @@ typedef struct filter {
#define f_ava f_un.f_un_ava
#define f_avtype f_un.f_un_ava.ava_type
#define f_avvalue f_un.f_un_ava.ava_value
#define f_mra f_un.f_un_mra
#define f_mrtype f_un.f_un_mra.mra_type
#define f_mrvalue f_un.f_un_mra.mra_value
#define f_mrdnaddrs f_un.f_un_mra.mra_dnattrs
#define f_and f_un.f_un_complex
#define f_or f_un.f_un_complex
#define f_not f_un.f_un_complex
...
...
@@ -486,7 +500,6 @@ struct backend_info {
int
(
*
bi_op_delete
)
LDAP_P
((
BackendDB
*
bd
,
struct
slap_conn
*
c
,
struct
slap_op
*
o
,
char
*
dn
));
/* Bug: be_op_abandon in unused! */
int
(
*
bi_op_abandon
)
LDAP_P
((
BackendDB
*
bd
,
struct
slap_conn
*
c
,
struct
slap_op
*
o
,
ber_int_t
msgid
));
...
...
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