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
François Kooman
OpenLDAP
Commits
8475893d
Commit
8475893d
authored
3 years ago
by
Ondřej Kuzník
Committed by
Quanah Gibson-Mount
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
ITS
#8820
Document ldap_get_attribute_ber()
parent
dfd9ffc6
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/man/man3/ldap_first_attribute.3
+27
-3
27 additions, 3 deletions
doc/man/man3/ldap_first_attribute.3
doc/man/man3/ldap_first_attribute.3.links
+1
-0
1 addition, 0 deletions
doc/man/man3/ldap_first_attribute.3.links
with
28 additions
and
3 deletions
doc/man/man3/ldap_first_attribute.3
+
27
−
3
View file @
8475893d
...
...
@@ -18,11 +18,17 @@ char *ldap_first_attribute(
.ft B
char *ldap_next_attribute(
LDAP *ld, LDAPMessage *entry, BerElement *ber )
.LP
.ft B
int ldap_get_attribute_ber(
LDAP *ld, LDAPMessage *entry, BerElement *ber,
BerValue *attr, BerVarray *vals )
.SH DESCRIPTION
The
.B ldap_first_attribute()
and
.BR ldap_first_attribute() ,
.B ldap_next_attribute()
and
.B ldap_get_attribute_ber()
routines are used
to step through the attributes in an LDAP entry.
.B ldap_first_attribute()
...
...
@@ -52,6 +58,19 @@ The attribute names returned are suitable for inclusion in a call
to
.BR ldap_get_values (3)
to retrieve the attribute's values.
.LP
The
.B ldap_get_attribute_ber()
routine allows one to iterate over all attributes in-place, without
allocating memory to hold text for the attribute name or its values,
if requested. The use case is similar to
.B ldap_next_attribute()
except that the attribute name is returned into \fIattr\fP and, if
\fIvals\fP is non-NULL, the list of values is stored there. Both point
into the LDAP message and remain valid only while the entry is valid.
The caller is still responsible for freeing \fIvals\fP with
.BR ldap_memfree (3),
if used.
.SH ERRORS
If an error occurs, NULL is returned and the ld_errno field in the
\fIld\fP parameter is set to indicate the error. See
...
...
@@ -63,7 +82,12 @@ The
and
.B ldap_next_attribute()
return dynamically allocated memory that must be freed by the caller via
.BR ldap_memfree (3).
.BR ldap_memfree (3).
For
.BR ldap_get_attribute_ber() ,
only the actual \fIvals\fP pointer needs to be freed with
.BR ldap_memfree (3),
other data is accounted for as part of \fIber\fP.
.SH SEE ALSO
.BR ldap (3),
.BR ldap_first_entry (3),
...
...
This diff is collapsed.
Click to expand it.
doc/man/man3/ldap_first_attribute.3.links
+
1
−
0
View file @
8475893d
ldap_next_attribute.3
ldap_get_attribute_ber.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