Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
06b350c0
Commit
06b350c0
authored
23 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Moved WSAStartup/WSACleanup to libldap/init.c. Cleanup occurs in the
internal atexit handler.
parent
c214a13a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/ac/socket.h
+0
-2
0 additions, 2 deletions
include/ac/socket.h
libraries/libldap/init.c
+36
-0
36 additions, 0 deletions
libraries/libldap/init.c
libraries/libldap/open.c
+2
-39
2 additions, 39 deletions
libraries/libldap/open.c
libraries/libldap/unbind.c
+0
-2
0 additions, 2 deletions
libraries/libldap/unbind.c
with
38 additions
and
43 deletions
include/ac/socket.h
+
0
−
2
View file @
06b350c0
...
...
@@ -55,8 +55,6 @@
#include
<winsock2.h>
#elif HAVE_WINSOCK
#include
<winsock.h>
#else
#define WSACleanup()
#endif
#ifdef HAVE_PCNFS
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/init.c
+
36
−
0
View file @
06b350c0
...
...
@@ -373,6 +373,9 @@ ldap_int_destroy_global_options(void)
ldap_free_urllist
(
gopts
->
ldo_defludp
);
gopts
->
ldo_defludp
=
NULL
;
}
#if defined(HAVE_WINSOCK) || defined(HAVE_WINSOCK2)
WSACleanup
(
);
#endif
}
/*
...
...
@@ -450,6 +453,39 @@ void ldap_int_initialize( struct ldapoptions *gopts, int *dbglvl )
ldap_int_hostname
=
ldap_pvt_get_fqdn
(
ldap_int_hostname
);
#endif
#ifdef HAVE_WINSOCK2
{
WORD
wVersionRequested
;
WSADATA
wsaData
;
wVersionRequested
=
MAKEWORD
(
2
,
0
);
if
(
WSAStartup
(
wVersionRequested
,
&
wsaData
)
!=
0
)
{
/* Tell the user that we couldn't find a usable */
/* WinSock DLL. */
return
;
}
/* Confirm that the WinSock DLL supports 2.0.*/
/* Note that if the DLL supports versions greater */
/* than 2.0 in addition to 2.0, it will still return */
/* 2.0 in wVersion since that is the version we */
/* requested. */
if
(
LOBYTE
(
wsaData
.
wVersion
)
!=
2
||
HIBYTE
(
wsaData
.
wVersion
)
!=
0
)
{
/* Tell the user that we couldn't find a usable */
/* WinSock DLL. */
WSACleanup
(
);
return
;
}
}
/* The WinSock DLL is acceptable. Proceed. */
#elif HAVE_WINSOCK
{
WSADATA
wsaData
;
if
(
WSAStartup
(
0x0101
,
&
wsaData
)
!=
0
)
{
return
;
}
}
#endif
ldap_int_utils_init
();
if
(
ldap_int_tblsize
==
0
)
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/open.c
+
2
−
39
View file @
06b350c0
...
...
@@ -92,47 +92,13 @@ ldap_create( LDAP **ldp )
/* Initialize the global options, if not already done. */
if
(
gopts
->
ldo_valid
!=
LDAP_INITIALIZED
)
{
ldap_int_initialize
(
gopts
,
NULL
);
if
(
gopts
->
ldo_valid
!=
LDAP_INITIALIZED
)
return
LDAP_LOCAL_ERROR
;
}
Debug
(
LDAP_DEBUG_TRACE
,
"ldap_create
\n
"
,
0
,
0
,
0
);
#ifdef HAVE_WINSOCK2
{
WORD
wVersionRequested
;
WSADATA
wsaData
;
wVersionRequested
=
MAKEWORD
(
2
,
0
);
if
(
WSAStartup
(
wVersionRequested
,
&
wsaData
)
!=
0
)
{
/* Tell the user that we couldn't find a usable */
/* WinSock DLL. */
return
LDAP_LOCAL_ERROR
;
}
/* Confirm that the WinSock DLL supports 2.0.*/
/* Note that if the DLL supports versions greater */
/* than 2.0 in addition to 2.0, it will still return */
/* 2.0 in wVersion since that is the version we */
/* requested. */
if
(
LOBYTE
(
wsaData
.
wVersion
)
!=
2
||
HIBYTE
(
wsaData
.
wVersion
)
!=
0
)
{
/* Tell the user that we couldn't find a usable */
/* WinSock DLL. */
WSACleanup
(
);
return
LDAP_LOCAL_ERROR
;
}
}
/* The WinSock DLL is acceptable. Proceed. */
#elif HAVE_WINSOCK
{
WSADATA
wsaData
;
if
(
WSAStartup
(
0x0101
,
&
wsaData
)
!=
0
)
{
return
LDAP_LOCAL_ERROR
;
}
}
#endif
if
(
(
ld
=
(
LDAP
*
)
LDAP_CALLOC
(
1
,
sizeof
(
LDAP
)
))
==
NULL
)
{
WSACleanup
(
);
return
(
LDAP_NO_MEMORY
);
}
...
...
@@ -160,14 +126,12 @@ ldap_create( LDAP **ldp )
if
(
ld
->
ld_options
.
ldo_defludp
==
NULL
)
{
LDAP_FREE
(
(
char
*
)
ld
);
WSACleanup
(
);
return
LDAP_NO_MEMORY
;
}
if
((
ld
->
ld_selectinfo
=
ldap_new_select_info
())
==
NULL
)
{
ldap_free_urllist
(
ld
->
ld_options
.
ldo_defludp
);
LDAP_FREE
(
(
char
*
)
ld
);
WSACleanup
(
);
return
LDAP_NO_MEMORY
;
}
...
...
@@ -177,7 +141,6 @@ ldap_create( LDAP **ldp )
if
(
ld
->
ld_sb
==
NULL
)
{
ldap_free_urllist
(
ld
->
ld_options
.
ldo_defludp
);
LDAP_FREE
(
(
char
*
)
ld
);
WSACleanup
(
);
return
LDAP_NO_MEMORY
;
}
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/unbind.c
+
0
−
2
View file @
06b350c0
...
...
@@ -157,8 +157,6 @@ ldap_ld_free(
LDAP_FREE
(
(
char
*
)
ld
);
WSACleanup
();
return
(
err
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment