]> git.sur5r.net Git - openldap/blob - doc/man/man3/ldap_result.3
Update copyright for next release
[openldap] / doc / man / man3 / ldap_result.3
1 .TH LDAP_RESULT 3 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP$
3 .\" Copyright 1998-2009 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply.  See COPYRIGHT/LICENSE.
5 .SH NAME
6 ldap_result \- Wait for the result of an LDAP operation
7 .SH LIBRARY
8 OpenLDAP LDAP (libldap, -lldap)
9 .SH SYNOPSIS
10 .nf
11 .ft B
12 #include <ldap.h>
13 .LP
14 .ft B
15 int ldap_result( LDAP *ld, int msgid, int all,
16         struct timeval *timeout, LDAPMessage **result );
17
18 int ldap_msgfree( LDAPMessage *msg );
19
20 int ldap_msgtype( LDAPMessage *msg );
21
22 int ldap_msgid( LDAPMessage *msg );
23 .ft
24 .SH DESCRIPTION
25 The
26 .B ldap_result()
27 routine is used to wait for and return the result of
28 an operation previously initiated by one of the LDAP asynchronous
29 operation routines (e.g.,
30 .BR ldap_search_ext (3),
31 .BR ldap_modify_ext (3),
32 etc.).  Those routines all return -1 in case of error, and an
33 invocation identifier upon successful initiation of the operation. The
34 invocation identifier is picked by the library and is guaranteed to be
35 unique across the LDAP session.  It can be used to request the result
36 of a specific operation from
37 .B ldap_result()
38 through the \fImsgid\fP parameter.
39 .LP
40 The
41 .B ldap_result()
42 routine will block or not, depending upon the setting
43 of the \fItimeout\fP parameter.
44 If timeout is not a NULL pointer,  it  specifies  a  maximum
45 interval  to wait for the selection to complete.  If timeout
46 is a NULL  pointer, the LDAP_OPT_TIMEOUT value set by
47 .BR ldap_set_option (3)
48 is used. With the default setting,
49 the  select  blocks  indefinitely.   To
50 effect  a  poll,  the  timeout argument should be a non-NULL
51 pointer, pointing to a zero-valued timeval structure.  See
52 .BR select (2)
53 for further details.
54 .LP
55 If the result of a specific operation is required, \fImsgid\fP should
56 be set to the invocation identifier returned when the operation was
57 initiated, otherwise LDAP_RES_ANY or LDAP_RES_UNSOLICITED should be
58 supplied to wait for any or unsolicited response.
59 .LP
60 The \fIall\fP parameter, if non-zero, causes
61 .B ldap_result()
62 to return all responses with msgid, otherwise only the
63 next response is returned.  This is commonly used to obtain all
64 the responses of a search operation.
65 .LP
66 A search response is made up of zero or
67 more search entries, zero or more search references, and zero or
68 more extended partial responses followed by a search result.  If
69 \fIall\fP is set to 0, search entries will be returned one at a
70 time as they come in, via separate calls to
71 .BR ldap_result() .
72 If it's set to 1, the search
73 response will only be returned in its entirety, i.e., after all entries,
74 all references, all extended partial responses, and the final search
75 result have been received.
76 .LP
77 Upon success, the type of the result received is returned and the
78 \fIresult\fP parameter will contain the result of the operation;
79 otherwise, the \fIresult\fP parameter is undefined.  This
80 result should be passed to the LDAP parsing routines,
81 .BR ldap_first_message (3)
82 and friends, for interpretation.
83 .LP
84 The possible result types returned are:
85 .LP
86 .nf
87         LDAP_RES_BIND (0x61)
88         LDAP_RES_SEARCH_ENTRY (0x64)
89         LDAP_RES_SEARCH_REFERENCE (0x73)
90         LDAP_RES_SEARCH_RESULT (0x65)
91         LDAP_RES_MODIFY (0x67)
92         LDAP_RES_ADD (0x69)
93         LDAP_RES_DELETE (0x6b)
94         LDAP_RES_MODDN (0x6d)
95         LDAP_RES_COMPARE (0x6f)
96         LDAP_RES_EXTENDED (0x78)
97         LDAP_RES_INTERMEDIATE (0x79)
98 .fi
99 .LP
100 The
101 .B ldap_msgfree()
102 routine is used to free the memory allocated for
103 result(s) by
104 .B ldap_result()
105 or
106 .BR ldap_search_ext_s (3)
107 and friends.
108 It takes a pointer to the result or result chain to be freed and returns
109 the type of the last message in the chain.
110 If the parameter is NULL, the function does nothing and returns zero.
111 .LP
112 The
113 .B ldap_msgtype()
114 routine returns the type of a message.
115 .LP
116 The
117 .B ldap_msgid()
118 routine returns the message id of a message.
119 .SH ERRORS
120 .B ldap_result()
121 returns -1 if something bad happens, and zero if the
122 timeout specified was exceeded.
123 .B ldap_msgtype()
124 and
125 .B ldap_msgid()
126 return -1 on error.
127 .SH SEE ALSO
128 .BR ldap (3),
129 .BR ldap_first_message (3),
130 .BR select (2)
131 .SH ACKNOWLEDGEMENTS
132 .so ../Project