Scroll to navigation

ldap_openW(3w) Wine API ldap_openW(3w)

NAME

ldap_openW (WLDAP32.@)

SYNOPSIS

WLDAP32_LDAP * CDECL ldap_openW
(
PWCHAR hostname,
ULONG portnumber
)
 

DESCRIPTION

Initialize an LDAP context and create a TCP connection.
 

PARAMS

hostname [In] Name of the host to connect to.
portnumber [In] Port number to use.
 

RETURNS

Success: Pointer to an LDAP context.
Failure: NULL.
 

NOTES

The hostname string can be a space separated string of hostnames, in which case the LDAP runtime will try to connect to the hosts in order, until a connection can be made. A hostname may have a trailing port number (separated from the hostname by a ':'), which will take precedence over the port number supplied as a parameter to this function.
 

IMPLEMENTATION

Declared in "winldap_private.h".
Implemented in "dlls/wldap32/init.c".
Oct 2012 Wine API