8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / man / man3ldap / ldap_first_attribute.3ldap
blob9db90e252c19fd688ef8a0c691287a980e515215
1 '\" te
2 .\" Copyright (C) 1990, Regents of the University of Michigan.  All Rights Reserved.
3 .\" Portions Copyright (C) 2003, Sun Microsystems, Inc. All Rights Reserved.
4 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
6 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
7 .TH LDAP_FIRST_ATTRIBUTE 3LDAP "Dec 16, 2003"
8 .SH NAME
9 ldap_first_attribute, ldap_next_attribute \- step through LDAP entry attributes
10 .SH SYNOPSIS
11 .LP
12 .nf
13 cc [ \fIflag\fR...] \fIfile\fR... -lldap[ \fIlibrary\fR...]
14 #include <lber.h>
15 #include <ldap.h>
17 \fBchar *\fR\fBldap_first_attribute\fR(\fBLDAP *\fR\fIld\fR, \fBLDAPMessage *\fR\fIentry\fR,
18      \fBBerElement **\fR\fIberptr\fR);
19 .fi
21 .LP
22 .nf
23 \fBchar *\fR\fBldap_next_attribute\fR(\fBLDAP *\fR\fIld\fR, \fBLDAPMessage *\fR\fIentry\fR,
24      \fBBerElement *\fR\fIber\fR);
25 .fi
27 .SH DESCRIPTION
28 .sp
29 .LP
30 The \fBldap_first_attribute()\fR function gets the value of the first attribute
31 in an entry.
32 .sp
33 .LP
34 The \fBldap_first_attribute()\fR function returns the name of the first
35 attribute in the entry. To get the value of the first attribute, pass the
36 attribute name to the \fBldap_get_values()\fR function or to the
37 \fBldap_get_values_len()\fR function.
38 .sp
39 .LP
40 The \fBldap_next_attribute()\fR function gets the value of the next attribute
41 in an entry.
42 .sp
43 .LP
44 After stepping through the attributes, the application should call
45 \fBber_free()\fR to free the \fBBerElement\fR structure allocated by the
46 \fBldap_first_attribute()\fR function if the structure is other than NULL.
47 .SH ERRORS
48 .sp
49 .LP
50 If an error occurs, \fINULL\fR is returned and the \fBld_errno\fR field in the
51 \fIld\fR parameter is set to indicate the error. See \fBldap_error\fR(3LDAP)
52 for a description of possible error codes.
53 .SH ATTRIBUTES
54 .sp
55 .LP
56 See \fBattributes\fR(5) for a description of the following attributes:
57 .sp
59 .sp
60 .TS
61 box;
62 c | c
63 l | l .
64 ATTRIBUTE TYPE  ATTRIBUTE VALUE
66 MT-Level        SUNWcsl (32-bit)SUNWcslx (64-bit)
68 Interface Stability     Evolving
69 .TE
71 .SH SEE ALSO
72 .sp
73 .LP
74 \fBldap\fR(3LDAP), \fBldap_first_entry\fR(3LDAP), \fBldap_get_values\fR(3LDAP),
75 \fBldap_error\fR(3LDAP), \fBattributes\fR(5)
76 .SH NOTES
77 .sp
78 .LP
79 The \fBldap_first_attribute()\fR function alllocates memory that might need to
80 be freed by the caller by means of \fBber_free\fR(3LDAP).