Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f258d2ce
Commit
f258d2ce
authored
Aug 22, 2005
by
Hans Leidekker
Committed by
Alexandre Julliard
Aug 22, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Implement ldap_rename* functions.
parent
bf129c41
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
260 additions
and
6 deletions
+260
-6
Makefile.in
dlls/wldap32/Makefile.in
+1
-0
rename.c
dlls/wldap32/rename.c
+249
-0
winldap_private.h
dlls/wldap32/winldap_private.h
+4
-0
wldap32.spec
dlls/wldap32/wldap32.spec
+6
-6
No files found.
dlls/wldap32/Makefile.in
View file @
f258d2ce
...
...
@@ -21,6 +21,7 @@ C_SRCS = \
modify.c
\
modrdn.c
\
option.c
\
rename.c
\
search.c
RC_SRCS
=
wldap32.rc
...
...
dlls/wldap32/rename.c
0 → 100644
View file @
f258d2ce
/*
* 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_H
#include <ldap.h>
#else
#define LDAP_NOT_SUPPORTED 0x5c
#endif
#include "winldap_private.h"
#include "wldap32.h"
WINE_DEFAULT_DEBUG_CHANNEL
(
wldap32
);
ULONG
ldap_rename_extA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
PCHAR
newrdn
,
PCHAR
newparent
,
INT
delete
,
PLDAPControlA
*
serverctrls
,
PLDAPControlA
*
clientctrls
,
ULONG
*
message
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
,
*
newrdnW
=
NULL
,
*
newparentW
=
NULL
;
LDAPControlW
**
serverctrlsW
=
NULL
,
**
clientctrlsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %s, %s, 0x%02x, %p, %p, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
debugstr_a
(
newrdn
),
debugstr_a
(
newparent
),
delete
,
serverctrls
,
clientctrls
,
message
);
if
(
!
ld
||
!
message
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
newrdn
)
{
newrdnW
=
strAtoW
(
newrdn
);
if
(
!
newrdnW
)
goto
exit
;
}
if
(
newparent
)
{
newparentW
=
strAtoW
(
newparent
);
if
(
!
newparentW
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsW
=
controlarrayAtoW
(
serverctrls
);
if
(
!
serverctrlsW
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsW
=
controlarrayAtoW
(
clientctrls
);
if
(
!
clientctrlsW
)
goto
exit
;
}
ret
=
ldap_rename_extW
(
ld
,
dnW
,
newrdnW
,
newparentW
,
delete
,
serverctrlsW
,
clientctrlsW
,
message
);
exit:
strfreeW
(
dnW
);
strfreeW
(
newrdnW
);
strfreeW
(
newparentW
);
controlarrayfreeW
(
serverctrlsW
);
controlarrayfreeW
(
clientctrlsW
);
#endif
return
ret
;
}
ULONG
ldap_rename_extW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
PWCHAR
newrdn
,
PWCHAR
newparent
,
INT
delete
,
PLDAPControlW
*
serverctrls
,
PLDAPControlW
*
clientctrls
,
ULONG
*
message
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
,
*
newrdnU
=
NULL
,
*
newparentU
=
NULL
;
LDAPControl
**
serverctrlsU
=
NULL
,
**
clientctrlsU
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %s, %s, 0x%02x, %p, %p, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
debugstr_w
(
newrdn
),
debugstr_w
(
newparent
),
delete
,
serverctrls
,
clientctrls
,
message
);
if
(
!
ld
||
!
message
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
newrdn
)
{
newrdnU
=
strWtoU
(
newrdn
);
if
(
!
newrdnU
)
goto
exit
;
}
if
(
newparent
)
{
newparentU
=
strWtoU
(
newparent
);
if
(
!
newparentU
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsU
=
controlarrayWtoU
(
serverctrls
);
if
(
!
serverctrlsU
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsU
=
controlarrayWtoU
(
clientctrls
);
if
(
!
clientctrlsU
)
goto
exit
;
}
ret
=
ldap_rename
(
ld
,
dn
?
dnU
:
""
,
newrdn
?
newrdnU
:
""
,
newparentU
,
delete
,
serverctrlsU
,
clientctrlsU
,
(
int
*
)
message
);
exit:
strfreeU
(
dnU
);
strfreeU
(
newrdnU
);
strfreeU
(
newparentU
);
controlarrayfreeU
(
serverctrlsU
);
controlarrayfreeU
(
clientctrlsU
);
#endif
return
ret
;
}
ULONG
ldap_rename_ext_sA
(
WLDAP32_LDAP
*
ld
,
PCHAR
dn
,
PCHAR
newrdn
,
PCHAR
newparent
,
INT
delete
,
PLDAPControlA
*
serverctrls
,
PLDAPControlA
*
clientctrls
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
WCHAR
*
dnW
=
NULL
,
*
newrdnW
=
NULL
,
*
newparentW
=
NULL
;
LDAPControlW
**
serverctrlsW
=
NULL
,
**
clientctrlsW
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %s, %s, 0x%02x, %p, %p)
\n
"
,
ld
,
debugstr_a
(
dn
),
debugstr_a
(
newrdn
),
debugstr_a
(
newparent
),
delete
,
serverctrls
,
clientctrls
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnW
=
strAtoW
(
dn
);
if
(
!
dnW
)
goto
exit
;
}
if
(
newrdn
)
{
newrdnW
=
strAtoW
(
newrdn
);
if
(
!
newrdnW
)
goto
exit
;
}
if
(
newparent
)
{
newparentW
=
strAtoW
(
newparent
);
if
(
!
newparentW
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsW
=
controlarrayAtoW
(
serverctrls
);
if
(
!
serverctrlsW
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsW
=
controlarrayAtoW
(
clientctrls
);
if
(
!
clientctrlsW
)
goto
exit
;
}
ret
=
ldap_rename_ext_sW
(
ld
,
dnW
,
newrdnW
,
newparentW
,
delete
,
serverctrlsW
,
clientctrlsW
);
exit:
strfreeW
(
dnW
);
strfreeW
(
newrdnW
);
strfreeW
(
newparentW
);
controlarrayfreeW
(
serverctrlsW
);
controlarrayfreeW
(
clientctrlsW
);
#endif
return
ret
;
}
ULONG
ldap_rename_ext_sW
(
WLDAP32_LDAP
*
ld
,
PWCHAR
dn
,
PWCHAR
newrdn
,
PWCHAR
newparent
,
INT
delete
,
PLDAPControlW
*
serverctrls
,
PLDAPControlW
*
clientctrls
)
{
ULONG
ret
=
LDAP_NOT_SUPPORTED
;
#ifdef HAVE_LDAP
char
*
dnU
=
NULL
,
*
newrdnU
=
NULL
,
*
newparentU
=
NULL
;
LDAPControl
**
serverctrlsU
=
NULL
,
**
clientctrlsU
=
NULL
;
ret
=
WLDAP32_LDAP_NO_MEMORY
;
TRACE
(
"(%p, %s, %s, %s, 0x%02x, %p, %p)
\n
"
,
ld
,
debugstr_w
(
dn
),
debugstr_w
(
newrdn
),
debugstr_w
(
newparent
),
delete
,
serverctrls
,
clientctrls
);
if
(
!
ld
)
return
WLDAP32_LDAP_PARAM_ERROR
;
if
(
dn
)
{
dnU
=
strWtoU
(
dn
);
if
(
!
dnU
)
goto
exit
;
}
if
(
newrdn
)
{
newrdnU
=
strWtoU
(
newrdn
);
if
(
!
newrdnU
)
goto
exit
;
}
if
(
newparent
)
{
newparentU
=
strWtoU
(
newparent
);
if
(
!
newparentU
)
goto
exit
;
}
if
(
serverctrls
)
{
serverctrlsU
=
controlarrayWtoU
(
serverctrls
);
if
(
!
serverctrlsU
)
goto
exit
;
}
if
(
clientctrls
)
{
clientctrlsU
=
controlarrayWtoU
(
clientctrls
);
if
(
!
clientctrlsU
)
goto
exit
;
}
ret
=
ldap_rename_s
(
ld
,
dn
?
dnU
:
""
,
newrdn
?
newrdnU
:
""
,
newparentU
,
delete
,
serverctrlsU
,
clientctrlsU
);
exit:
strfreeU
(
dnU
);
strfreeU
(
newrdnU
);
strfreeU
(
newparentU
);
controlarrayfreeU
(
serverctrlsU
);
controlarrayfreeU
(
clientctrlsU
);
#endif
return
ret
;
}
dlls/wldap32/winldap_private.h
View file @
f258d2ce
...
...
@@ -293,6 +293,10 @@ ULONG ldap_modrdn_sW(WLDAP32_LDAP*,PWCHAR,PWCHAR);
WLDAP32_LDAP
*
ldap_openA
(
PCHAR
,
ULONG
);
WLDAP32_LDAP
*
ldap_openW
(
PWCHAR
,
ULONG
);
void
WLDAP32_ldap_perror
(
WLDAP32_LDAP
*
,
const
PCHAR
);
ULONG
ldap_rename_extA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
,
INT
,
PLDAPControlA
*
,
PLDAPControlA
*
,
ULONG
*
);
ULONG
ldap_rename_extW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
,
INT
,
PLDAPControlW
*
,
PLDAPControlW
*
,
ULONG
*
);
ULONG
ldap_rename_ext_sA
(
WLDAP32_LDAP
*
,
PCHAR
,
PCHAR
,
PCHAR
,
INT
,
PLDAPControlA
*
,
PLDAPControlA
*
);
ULONG
ldap_rename_ext_sW
(
WLDAP32_LDAP
*
,
PWCHAR
,
PWCHAR
,
PWCHAR
,
INT
,
PLDAPControlW
*
,
PLDAPControlW
*
);
ULONG
WLDAP32_ldap_result
(
WLDAP32_LDAP
*
,
ULONG
,
ULONG
,
struct
l_timeval
*
,
WLDAP32_LDAPMessage
**
);
ULONG
WLDAP32_ldap_result2error
(
WLDAP32_LDAP
*
,
WLDAP32_LDAPMessage
*
,
ULONG
);
ULONG
ldap_sasl_bindA
(
WLDAP32_LDAP
*
,
const
PCHAR
,
const
PCHAR
,
const
BERVAL
*
,
PLDAPControlA
*
,
PLDAPControlA
*
,
int
*
);
...
...
dlls/wldap32/wldap32.spec
View file @
f258d2ce
...
...
@@ -185,12 +185,12 @@
@ stub ldap_parse_vlv_controlA
@ stub ldap_parse_vlv_controlW
@ cdecl ldap_perror(ptr ptr) WLDAP32_ldap_perror
@
stub ldap_rename_ext
@
stub ldap_rename_extA
@
stub ldap_rename_extW
@
stub ldap_rename_ext_s
@
stub ldap_rename_ext_sA
@
stub ldap_rename_ext_sW
@
cdecl ldap_rename_ext(ptr str str str long ptr ptr ptr) ldap_rename_extA
@
cdecl ldap_rename_extA(ptr str str str long ptr ptr ptr)
@
cdecl ldap_rename_extW(ptr wstr wstr wstr long ptr ptr ptr)
@
cdecl ldap_rename_ext_s(ptr str str str long ptr ptr) ldap_rename_ext_sA
@
cdecl ldap_rename_ext_sA(ptr str str str long ptr ptr)
@
cdecl ldap_rename_ext_sW(ptr wstr wstr wstr long ptr ptr)
@ cdecl ldap_result(ptr long long ptr ptr) WLDAP32_ldap_result
@ cdecl ldap_result2error(ptr ptr long) WLDAP32_ldap_result2error
@ cdecl ldap_sasl_bindA(ptr str str ptr ptr ptr ptr)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment