1 .TH LDAP_DELETE 3 "RELEASEDATE" "OpenLDAP LDVERSION"
3 .\" Copyright 1998-2003 The OpenLDAP Foundation All Rights Reserved.
4 .\" Copying restrictions apply. See COPYRIGHT/LICENSE.
6 ldap_delete, ldap_delete_s \- Perform an LDAP delete operation
8 OpenLDAP LDAP (libldap, -lldap)
15 int ldap_delete_s(ld, dn)
21 int ldap_delete(ld, dn)
28 routine is used to perform an LDAP delete operation
29 synchronously. It takes \fIdn\fP, the DN of the entry to be deleted.
30 It returns an LDAP error code, indicating the success or failure of the
35 routine is used to perform an LDAP delete operation
36 asynchronously. It takes the same parameters as
38 but returns the message id of the request it initiated. The result of
39 the delete can be obtained by a subsequent call to
43 returns an LDAP error code which can be interpreted
48 returns -1 if something went wrong initiating the request. It returns the
49 non-negative message id of the request if things went ok.
55 is developed and maintained by The OpenLDAP Project (http://www.openldap.org/).
57 is derived from University of Michigan LDAP 3.3 Release.