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
James Lowden
OpenLDAP
Commits
945fd190
Commit
945fd190
authored
22 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
SLAP_OP_BLOCKS - added response block
parent
fec1c7b5
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
+20
-9
20 additions, 9 deletions
servers/slapd/slap.h
with
20 additions
and
9 deletions
servers/slapd/slap.h
+
20
−
9
View file @
945fd190
...
...
@@ -1795,24 +1795,35 @@ typedef struct slap_op {
struct
berval
o_req_ndn
;
union
o_req_u
{
req_bind_s
o
r
_bind
;
req_search_s
o
r
_search
;
req_compare_s
o
r
_compare
;
req_modrdn_s
o
r
_modrdn
;
req_add_s
o
r
_add
;
req_abandon_s
o
r
_abandon
;
req_abandon_s
o
r
_cancel
;
req_extended_s
o
r
_extended
;
req_bind_s
o
q
_bind
;
req_search_s
o
q
_search
;
req_compare_s
o
q
_compare
;
req_modrdn_s
o
q
_modrdn
;
req_add_s
o
q
_add
;
req_abandon_s
o
q
_abandon
;
req_abandon_s
o
q
_cancel
;
req_extended_s
o
q
_extended
;
}
o_request
;
/* short hands for union members */
#define o_bind o_request.o
r
_bind
#define o_bind o_request.o
q
_bind
/* ... */
/* short hands for inner request members */
#define o_bind_edn o_bind.rb_edn
/* ... */
struct
o_rep_s
{
ber_tag_t
or_tag
;
ber_int_t
or_err
;
const
char
*
or_matched
;
const
char
*
or_text
;
BerVarray
or_ref
;
const
char
*
or_resoid
;
struct
berval
*
or_resdata
;
struct
berval
*
or_sasldata
;
LDAPControl
**
or_ctrls
;
}
o_response
;
#else
char
*
o_extendedop
;
/* extended operation OID */
#endif
...
...
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