Share via


ldap_add_ext_s

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This function initiates a synchronous add operation to a tree. For an add operation to succeed, the parent of the entry being added must already exist or the parent must be empty (equal to the distinguished name of the root).

Syntax

ULONG ldap_add_ext_s(
  LDAP* ld,
  UNICODE PTCHAR dn,
  LDAPMod* attrs[],
  LDAPControl** ServerControls,
  LDAPControl** ClientControls
);

Parameters

  • ld
    [in] Session handle.
  • dn
    [in] Distinguished name of the entry to add.
  • attrs
    [in] Null-terminated array of pointers to LDAPMod structures. Each structure specifies a single attribute. See the Remarks section for more information.
  • ServerControls
    [in] A list of LDAP server controls.
  • ClientControls
    [in] A list of client controls.

Return Value

If this function succeeds, the return value is LDAP_SUCCESS.

If this function fails, it returns an error code. See the LDAP_RETCODE enumeration for a list of possible return values.

Remarks

The parameters and effects of this function include those of the ldap_add_s function. The extended routine includes additional parameters to support client and server controls.

Before calling ldap_add_ext_s, you must create an entry by specifying its attributes in LDAPMod structures. Set the mod_op member of the each structure to LDAP_MOD_ADD, and set the mod_type and mod_vals members as appropriate for your entry.

Upon completion of the add operation, this function returns to the caller. Use the ldap_add_ext function if you prefer to have the operation carried out asynchronously.

In a multithreading environment, calls to ldap_add_ext_s are thread-safe.

When connecting to an LDAP 2 server, the application must perform a bind operation (by calling one of the ldap_bind or ldap_simple_bind functions) before attempting other operations.

Requirements

Header winldap.h
Library wldap32.lib
Windows Embedded CE Windows CE .NET 4.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

ldap_add_ext
ldap_add_s
ldap_bind
ldap_simple_bind
LDAPMod