1 .TH LDAP_ABANDON 3 "RELEASEDATE" "OpenLDAP LDVERSION"
2 .\" $OpenLDAP: pkg/ldap/doc/man/man3/ldap_abandon.3,v 1.17.2.4 2008/02/11 23:26:39 kurt Exp $
3 .\" Copyright 1998-2008 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply. See COPYRIGHT/LICENSE.
6 ldap_abandon_ext \- Abandon an LDAP operation in progress
8 OpenLDAP LDAP (libldap, -lldap)
20 LDAPControl **\fIsctrls\fB,
21 LDAPControl **\fIcctrls\fB );
27 routine is used to send a LDAP Abandon request for an
28 operation in progress. The \fImsgid\fP passed should be the
29 message id of an outstanding LDAP operation, such as returned by
30 .BR ldap_search_ext (3).
32 .BR ldap_abandon_ext ()
33 checks to see if the result of the operation has already come in. If it
34 has, it deletes it from the queue of pending messages. If not,
35 it sends an LDAP abandon request to the LDAP server.
37 The caller can expect that the result of an abandoned operation
38 will not be returned from a future call to
42 allows server and client controls to be passed in via the
46 parameters, respectively.
49 returns a code indicating success or, in the case of failure, the
50 nature of the failure. See
53 .SH DEPRECATED INTERFACES
56 routine is deprecated in favor of the
66 .BR ldap_search_ext (3)