Sweden-Number/dlls/wldap32/bind.c

135 lines
3.0 KiB
C
Raw Normal View History

2005-07-19 22:32:46 +02:00
/*
* WLDAP32 - LDAP support for Wine
*
* Copyright 2005 Hans Leidekker
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "config.h"
#include "wine/port.h"
#include "wine/debug.h"
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "winnls.h"
#ifdef HAVE_LDAP
#include <ldap.h>
#else
#define LDAP_SUCCESS 0x00
#define LDAP_NOT_SUPPORTED 0x5c
#endif
#include "winldap_private.h"
#include "wldap32.h"
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
ULONG ldap_bindA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR cred, ULONG method )
{
ULONG ret = LDAP_NOT_SUPPORTED;
#ifdef HAVE_LDAP
WCHAR *dnW, *credW;
TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_a(dn), cred, method );
dnW = strAtoW( dn );
if (!dnW) return LDAP_NO_MEMORY;
credW = strAtoW( cred );
if (!credW) return LDAP_NO_MEMORY;
ret = ldap_bindW( ld, dnW, credW, method );
strfreeW( dnW );
strfreeW( credW );
#endif
return ret;
}
ULONG ldap_bindW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR cred, ULONG method )
{
ULONG ret = LDAP_NOT_SUPPORTED;
#ifdef HAVE_LDAP
char *dnU, *credU;
TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_w(dn), cred, method );
dnU = strWtoU( dn );
if (!dnU) return LDAP_NO_MEMORY;
credU = strWtoU( cred );
if (!credU) return LDAP_NO_MEMORY;
ret = ldap_bind( ld, dnU, credU, method );
strfreeU( dnU );
strfreeU( credU );
#endif
return ret;
}
ULONG ldap_bind_sA( WLDAP32_LDAP *ld, PCHAR dn, PCHAR cred, ULONG method )
{
ULONG ret = LDAP_NOT_SUPPORTED;
#ifdef HAVE_LDAP
WCHAR *dnW, *credW;
TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_a(dn), cred, method );
dnW = strAtoW( dn );
if (!dnW) return LDAP_NO_MEMORY;
credW = strAtoW( cred );
if (!credW) return LDAP_NO_MEMORY;
ret = ldap_bind_sW( ld, dnW, credW, method );
strfreeW( dnW );
strfreeW( credW );
#endif
return ret;
}
ULONG ldap_bind_sW( WLDAP32_LDAP *ld, PWCHAR dn, PWCHAR cred, ULONG method )
{
ULONG ret = LDAP_NOT_SUPPORTED;
#ifdef HAVE_LDAP
char *dnU, *credU;
TRACE( "(%p, %s, %p, 0x%08lx)\n", ld, debugstr_w(dn), cred, method );
dnU = strWtoU( dn );
if (!dnU) return LDAP_NO_MEMORY;
credU = strWtoU( cred );
if (!credU) return LDAP_NO_MEMORY;
ret = ldap_bind_s( ld, dnU, credU, method );
strfreeU( dnU );
strfreeU( credU );
#endif
return ret;
}