Share via


LDAP Session Functions (Compact 2013)

3/26/2014

This topic describes the LDAP session functions with a description of the purpose of each.

In This Section

  • cldap_open
    Establishes a session with a Lightweight Directory Access Protocol (LDAP) server over a connectionless User Datagram Protocol (UDP) service.
  • ldap_abandon
    Cancels an in-progress asynchronous LDAP call.
  • ldap_bind
    Authenticates a client to the LDAP server. The bind operation identifies a client to the directory server by providing a distinguished name and some type of authentication credential, such as a password. The authentication method being used determines the particular type of credential.
  • ldap_bind_s
    Authenticates a client to the LDAP server.
  • ldap_init
    Initializes a session with an LDAP server.
  • ldap_open
    Creates and initializes a connection block, and then opens the connection to an LDAP server. This function is currently depreciated: users are strongly encouraged to use ldap_init instead.
  • ldap_sasl_bind_s
    Authenticates a client to the LDAP server using the Simple Authentication and Security Layer (SASL).
  • ldap_sasl_bind
    Authenticates a client to the LDAP server using the Simple Authentication and Security Layer (SASL).
  • ldap_simple_bind
    Authenticates a client to a server using a clear text password.
  • ldap_sslinit
    Initializes a Secure Sockets Layer (SSL) session with an LDAP server.
  • ldap_unbind
    Frees all resources associated with an LDAP session.
  • ldap_unbind_s
    Frees all resources associated with an LDAP session.

See Also

Reference

LDAP Functions