Sun Java System Directory Server Enterprise Edition 6.0 Developer's Guide

slapi_delete_internal_set_pb()

Prepares a parameter block for an internal delete operation.

Syntax

#include "slapi-plugin.h"
int slapi_delete_internal_set_pb(Slapi_PBlock *pb, const char *dn,
    LDAPControl **controls, const char *uniqueid,
    Slapi_ComponentId *plugin_identity, int operation_flags);

Parameters

This function takes the following parameters:

pb

Parameter block for the internal add operation

dn

Distinguished Name of the entry to add

controls

Array of controls to request for the add operation

uniqueid

Unique identifier for the entry if using this rather than DN.

plugin_identity

Plug-in identifier obtained from SLAPI_PLUGIN_IDENTITY during plug-in initialization

operation_flags

NULL or SLAPI_OP_FLAG_NEVER_CHAIN

Returns

This function returns 0 if successful. Otherwise, it returns an LDAP error code.

Description

This function prepares a parameter block for use with slapi_delete_internal_pb() using the components of the entry.

Memory Concerns

Allocate the parameter block using slapi_pblock_new() before calling this function.

Directory Server does not free the parameters you passed to this function.

Free the parameter block after calling slapi_delete_internal_pb() .

See Also

slapi_delete_internal_pb()

slapi_pblock_new()