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
0b3072d3
Commit
0b3072d3
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Misc. updates
parent
3ce7e382
Branches
Branches containing commit
Tags
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_first_attribute.3
+8
-12
8 additions, 12 deletions
doc/man/man3/ldap_first_attribute.3
doc/man/man3/ldap_first_entry.3
+4
-13
4 additions, 13 deletions
doc/man/man3/ldap_first_entry.3
with
12 additions
and
25 deletions
doc/man/man3/ldap_first_attribute.3
+
8
−
12
View file @
0b3072d3
.TH LDAP_FIRST_ATTRIBUTE 3 "
4 October
200
0
" "OpenLDAP LDVERSION"
.TH LDAP_FIRST_ATTRIBUTE 3 "
23 July
200
1
" "OpenLDAP LDVERSION"
.\" $OpenLDAP$
.\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserved.
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
...
...
@@ -10,18 +10,12 @@ ldap_first_attribute, ldap_next_attribute \- step through LDAP entry attributes
#include <ldap.h>
.LP
.ft B
char *ldap_first_attribute(ld, entry, berptr)
.ft
LDAP *ld;
LDAPMessage *entry;
BerElement **berptr;
char *ldap_first_attribute(
LDAP *ld, LDAPMessage entry, BerElement **berptr )
.LP
.ft B
char *ldap_next_attribute(ld, entry, ber)
.ft
LDAP *ld;
LDAPMessage *entry;
BerElement *ber;
char *ldap_next_attribute(
LDAP *ld, LDAPMessage entry, BerElement *ber )
.SH DESCRIPTION
The
.B ldap_first_attribute()
...
...
@@ -64,7 +58,9 @@ for a description of possible error codes.
.SH NOTES
The
.B ldap_first_attribute()
routine dyanamically allocated memory that must be freed by the caller via
and
.B ldap_next_attribute()
return dyanamically allocated memory that must be freed by the caller via
.BR ldap_memfree (3).
.SH SEE ALSO
.BR ldap(3),
...
...
This diff is collapsed.
Click to expand it.
doc/man/man3/ldap_first_entry.3
+
4
−
13
View file @
0b3072d3
.TH LDAP_FIRST_ENTRY 3 "2
2 September 1998
" "OpenLDAP LDVERSION"
.TH LDAP_FIRST_ENTRY 3 "2
3 July 2001
" "OpenLDAP LDVERSION"
.\" $OpenLDAP$
.\" Copyright 1998-2000 The OpenLDAP Foundation All Rights Reserved.
.\" Copying restrictions apply. See COPYRIGHT/LICENSE.
...
...
@@ -10,22 +10,13 @@ ldap_first_entry, ldap_next_entry, ldap_count_entries \- LDAP result entry parsi
#include <ldap.h>
.LP
.ft B
ldap_count_entries(ld, result)
.ft
LDAP *ld;
LDAPMessage *result;
int ldap_count_entries( LDAP *ld, LDAPMessage *result )
.LP
.ft B
LDAPMessage *ldap_first_entry(ld, result)
.ft
LDAP *ld;
LDAPMessage *result;
LDAPMessage *ldap_first_entry( LDAP *ld, LDAPMessage *result )
.LP
.ft B
LDAPMessage *ldap_next_entry(ld, entry)
.ft
LDAP *ld;
LDAPMessage *entry;
LDAPMessage *ldap_next_entry( LDAP *ld, LDAPMessage *entry )
.SH DESCRIPTION
.LP
These routines are used to parse results received from
...
...
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