ldap_add_ext_s function
The ldap_add_ext_s function initiates a synchronous add operation to a tree. For an add operation to succeed, the parent of the entry added must exist, or the parent must be empty (equal to the distinguished name of the root).
Syntax
ULONG ldap_add_ext_s( _In_ LDAP *ld, _In_ PCHAR dn, _In_ LDAPMod *attrs[], _In_ PLDAPControl *ServerControls, _In_ PLDAPControl *ClientControls );
Parameters
- ld [in]
-
The session handle.
- dn [in]
-
A pointer to a null-terminated string that contains the distinguished name of the entry to add.
- attrs [in]
-
An array of pointers to LDAPMod structures. Each structure specifies a single attribute. For more information, see the Remarks section.
- ServerControls [in]
-
A list of LDAP server controls.
- ClientControls [in]
-
A list of client controls.
Return value
If the function succeeds, LDAP_SUCCESS is returned.
If the function fails, an error code is returned. For more information, see Return Values.
Remarks
The parameters and effects of ldap_add_ext_s include those of ldap_add_s. The extended routine includes additional parameters to support client and server controls.
Before calling ldap_add_ext_s, 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, ldap_add_ext_s returns to the caller. Use ldap_add_ext if you prefer to have the operation completed asynchronously.
Multithreading: Calls to ldap_add_ext_s are thread-safe.
ServerControls and ClientControls are optional and should be set to NULL if not used.
Requirements
|
Minimum supported client |
Windows Vista |
|---|---|
|
Minimum supported server |
Windows Server 2008 |
|
Header |
|
|
Library |
|
|
DLL |
|
|
Unicode and ANSI names |
ldap_add_ext_sW (Unicode) and ldap_add_ext_sA (ANSI) |
See also
- Extended Controls
- Using Controls
- Functions
- ldap_add_ext
- ldap_add_s
- ldap_bind
- ldap_simple_bind
- LDAPMod
- Return Values