Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
Nadezhda Ivanova
OpenLDAP
Commits
2fa8827c
Commit
2fa8827c
authored
26 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
replace with autoconf version
parent
41a48b09
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/libldap/open.c
+50
-28
50 additions, 28 deletions
libraries/libldap/open.c
with
50 additions
and
28 deletions
libraries/libldap/open.c
+
50
−
28
View file @
2fa8827c
...
...
@@ -5,31 +5,23 @@
* open.c
*/
#include
"portable.h"
#ifndef lint
static
char
copyright
[]
=
"@(#) Copyright (c) 1995 Regents of the University of Michigan.
\n
All rights reserved.
\n
"
;
#endif
#include
<stdio.h>
#include
<string.h>
#include
<stdlib.h>
#ifdef MACOS
#include
"macos.h"
#endif
/* MACOS */
#if defined( DOS ) || defined( _WIN32 )
#include
"msdos.h"
#endif
/* DOS */
#include
<ac/socket.h>
#include
<ac/string.h>
#include
<ac/time.h>
#if !defined(MACOS) && !defined(DOS) && !defined( _WIN32 )
#include
<sys/time.h>
#include
<sys/types.h>
#include
<sys/socket.h>
#ifndef VMS
#ifdef HAVE_SYS_PARAM_H
#include
<sys/param.h>
#endif
#include
<netinet/in.h>
#endif
#include
"lber.h"
#include
"ldap.h"
#include
"ldap-int.h"
...
...
@@ -38,14 +30,6 @@ static char copyright[] = "@(#) Copyright (c) 1995 Regents of the University of
int
ldap_debug
;
#endif
#ifndef INADDR_LOOPBACK
#define INADDR_LOOPBACK ((unsigned long) 0x7f000001)
#endif
#ifndef MAXHOSTNAMELEN
#define MAXHOSTNAMELEN 64
#endif
/*
* ldap_open - initialize and connect to an ldap server. A magic cookie to
...
...
@@ -119,14 +103,51 @@ ldap_init( char *defhost, int defport )
Debug
(
LDAP_DEBUG_TRACE
,
"ldap_init
\n
"
,
0
,
0
,
0
);
#ifdef HAVE_WINSOCK2
{
WORD
wVersionRequested
;
WSADATA
wsaData
;
int
err
;
wVersionRequested
=
MAKEWORD
(
2
,
0
);
err
=
WSAStartup
(
wVersionRequested
,
&
wsaData
);
if
(
err
!=
0
)
{
/* Tell the user that we couldn't find a usable */
/* WinSock DLL. */
return
NULL
;
}
/* 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
NULL
;
}
}
/* The WinSock DLL is acceptable. Proceed. */
#elif HAVE_WINSOCK
if
(
WSAStartup
(
0x0101
,
&
wsadata
)
!=
0
)
{
return
(
NULL
);
}
#endif
if
(
(
ld
=
(
LDAP
*
)
calloc
(
1
,
sizeof
(
LDAP
)
))
==
NULL
)
{
WSACleanup
(
);
return
(
NULL
);
}
#ifdef LDAP_REFERRALS
if
((
ld
->
ld_selectinfo
=
ldap_new_select_info
())
==
NULL
)
{
free
(
(
char
*
)
ld
);
WSACleanup
(
);
return
(
NULL
);
}
ld
->
ld_options
=
LDAP_OPT_REFERRALS
;
...
...
@@ -138,6 +159,7 @@ ldap_init( char *defhost, int defport )
ldap_free_select_info
(
ld
->
ld_selectinfo
);
#endif
/* LDAP_REFERRALS */
free
(
(
char
*
)
ld
);
WSACleanup
(
);
return
(
NULL
);
}
...
...
@@ -173,7 +195,7 @@ open_ldap_connection( LDAP *ld, Sockbuf *sb, char *host, int defport,
Debug
(
LDAP_DEBUG_TRACE
,
"open_ldap_connection
\n
"
,
0
,
0
,
0
);
defport
=
htons
(
defport
);
defport
=
htons
(
(
short
)
defport
);
if
(
host
!=
NULL
)
{
for
(
p
=
host
;
p
!=
NULL
&&
*
p
!=
'\0'
;
p
=
q
)
{
...
...
@@ -196,7 +218,7 @@ open_ldap_connection( LDAP *ld, Sockbuf *sb, char *host, int defport,
curhost
=
hostname
;
}
*
r
++
=
'\0'
;
port
=
htons
(
(
short
)
atoi
(
r
));
port
=
htons
(
(
short
)
atoi
(
r
)
);
}
else
{
port
=
defport
;
}
...
...
@@ -216,14 +238,14 @@ open_ldap_connection( LDAP *ld, Sockbuf *sb, char *host, int defport,
}
if
(
krbinstancep
!=
NULL
)
{
#ifdef KERBEROS
#ifdef
HAVE_
KERBEROS
if
((
*
krbinstancep
=
ldap_host_connected_to
(
sb
))
!=
NULL
&&
(
p
=
strchr
(
*
krbinstancep
,
'.'
))
!=
NULL
)
{
*
p
=
'\0'
;
}
#else
/* KERBEROS */
#else
/*
HAVE_
KERBEROS */
krbinstancep
=
NULL
;
#endif
/* KERBEROS */
#endif
/*
HAVE_
KERBEROS */
}
return
(
0
);
...
...
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