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
f993c9f4
Commit
f993c9f4
authored
4 years ago
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ITS#9271 Document ldap_parse_intermediate
parent
a05f926a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/man/man3/ldap_parse_result.3
+10
-3
10 additions, 3 deletions
doc/man/man3/ldap_parse_result.3
doc/man/man3/ldap_parse_result.3.links
+1
-0
1 addition, 0 deletions
doc/man/man3/ldap_parse_result.3.links
with
11 additions
and
3 deletions
doc/man/man3/ldap_parse_result.3
+
10
−
3
View file @
f993c9f4
...
...
@@ -24,6 +24,11 @@ int ldap_parse_sasl_bind_result( LDAP *ld, LDAPMessage *result,
.ft B
int ldap_parse_extended_result( LDAP *ld, LDAPMessage *result,
char **retoidp, struct berval **retdatap, int freeit )
.LP
.ft B
int ldap_parse_intermediate( LDAP *ld, LDAPMessage *result,
char **retoidp, struct berval **retdatap,
LDAPControl ***serverctrlsp, int freeit )
.SH DESCRIPTION
.LP
These routines are used to extract information from a result message.
...
...
@@ -41,7 +46,9 @@ the routines
and
.B ldap_parse_extended_result()
are used to get all the result information from SASL bind and extended
operations.
operations. To extract information from intermediate responses,
.B ldap_parse_intermediate()
can be used.
.LP
The \fIerrcodep\fP parameter will be filled in with the result code from
the result message.
...
...
@@ -77,13 +84,13 @@ with an allocated berval structure containing the credentials from the
server if present. The structure should be freed using
.BR ber_bvfree (3).
.LP
For extended results, the \fIretoidp\fP parameter will be filled in
For extended results
and intermediate responses
, the \fIretoidp\fP parameter will be filled in
with the dotted-OID text representation of the name of the extended
operation response. The string should be freed using
.BR ldap_memfree (3).
If no OID was returned, \fI*retoidp\fP is set to NULL.
.LP
For extended results, the \fIretdatap\fP parameter will be filled in
For extended results
and intermediate responses
, the \fIretdatap\fP parameter will be filled in
with a pointer to a berval structure containing the data from the
extended operation response. The structure should be freed using
.BR ber_bvfree (3).
...
...
This diff is collapsed.
Click to expand it.
doc/man/man3/ldap_parse_result.3.links
+
1
−
0
View file @
f993c9f4
ldap_parse_sasl_bind_result.3
ldap_parse_extended_result.3
ldap_parse_intermediate.3
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