1 /* $OpenLDAP: pkg/ldap/libraries/libldap/delete.c,v 1.26.2.3 2008/02/11 23:26:41 kurt Exp $ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2008 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in the file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1990 Regents of the University of Michigan.
16 * All rights reserved.
23 #include <ac/socket.h>
24 #include <ac/string.h>
30 * A delete request looks like this:
31 * DelRequet ::= DistinguishedName,
36 * ldap_delete_ext - initiate an ldap extended delete operation. Parameters:
39 * dn DN of the object to delete
40 * sctrls Server Controls
41 * cctrls Client Controls
42 * msgidp Message Id Pointer
45 * rc = ldap_delete( ld, dn, sctrls, cctrls, msgidp );
59 Debug( LDAP_DEBUG_TRACE
, "ldap_delete_ext\n", 0, 0, 0 );
62 assert( LDAP_VALID( ld
) );
64 assert( msgidp
!= NULL
);
66 /* check client controls */
67 rc
= ldap_int_client_controls( ld
, cctrls
);
68 if( rc
!= LDAP_SUCCESS
) return rc
;
70 /* create a message to send */
71 if ( (ber
= ldap_alloc_ber_with_options( ld
)) == NULL
) {
72 ld
->ld_errno
= LDAP_NO_MEMORY
;
73 return( ld
->ld_errno
);
76 LDAP_NEXT_MSGID( ld
, id
);
77 rc
= ber_printf( ber
, "{its", /* '}' */
78 id
, LDAP_REQ_DELETE
, dn
);
81 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
83 return( ld
->ld_errno
);
86 /* Put Server Controls */
87 if( ldap_int_put_controls( ld
, sctrls
, ber
) != LDAP_SUCCESS
) {
92 if ( ber_printf( ber
, /*{*/ "N}" ) == -1 ) {
93 ld
->ld_errno
= LDAP_ENCODING_ERROR
;
95 return( ld
->ld_errno
);
98 /* send the message */
99 *msgidp
= ldap_send_initial_request( ld
, LDAP_REQ_DELETE
, dn
, ber
, id
);
111 LDAPControl
**sctrls
,
112 LDAPControl
**cctrls
)
118 rc
= ldap_delete_ext( ld
, dn
, sctrls
, cctrls
, &msgid
);
120 if( rc
!= LDAP_SUCCESS
)
121 return( ld
->ld_errno
);
123 if ( ldap_result( ld
, msgid
, LDAP_MSG_ALL
, (struct timeval
*) NULL
, &res
) == -1 || !res
)
124 return( ld
->ld_errno
);
126 return( ldap_result2error( ld
, res
, 1 ) );
129 * ldap_delete - initiate an ldap (and X.500) delete operation. Parameters:
132 * dn DN of the object to delete
135 * msgid = ldap_delete( ld, dn );
138 ldap_delete( LDAP
*ld
, LDAP_CONST
char *dn
)
143 * A delete request looks like this:
144 * DelRequet ::= DistinguishedName,
147 Debug( LDAP_DEBUG_TRACE
, "ldap_delete\n", 0, 0, 0 );
149 return ldap_delete_ext( ld
, dn
, NULL
, NULL
, &msgid
) == LDAP_SUCCESS
155 ldap_delete_s( LDAP
*ld
, LDAP_CONST
char *dn
)
157 return ldap_delete_ext_s( ld
, dn
, NULL
, NULL
);