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
e2cca72b
Commit
e2cca72b
authored
23 years ago
by
Kurt Zeilenga
Browse files
Options
Downloads
Patches
Plain Diff
Fix ntohs/htons issues
parent
2cef1e69
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
libraries/libldap/open.c
+2
-2
2 additions, 2 deletions
libraries/libldap/open.c
libraries/libldap/os-ip.c
+4
-5
4 additions, 5 deletions
libraries/libldap/os-ip.c
with
6 additions
and
7 deletions
libraries/libldap/open.c
+
2
−
2
View file @
e2cca72b
...
...
@@ -266,7 +266,7 @@ ldap_int_open_connection(
switch
(
proto
=
ldap_pvt_url_scheme2proto
(
srv
->
lud_scheme
)
)
{
case
LDAP_PROTO_TCP
:
port
=
htons
(
(
short
)
srv
->
lud_port
)
;
port
=
srv
->
lud_port
;
addr
=
0
;
if
(
srv
->
lud_host
==
NULL
||
*
srv
->
lud_host
==
0
)
{
...
...
@@ -294,7 +294,7 @@ ldap_int_open_connection(
break
;
#ifdef LDAP_CONNECTIONLESS
case
LDAP_PROTO_UDP
:
port
=
htons
(
(
short
)
srv
->
lud_port
)
;
port
=
srv
->
lud_port
;
addr
=
0
;
if
(
srv
->
lud_host
==
NULL
||
*
srv
->
lud_host
==
0
)
{
...
...
This diff is collapsed.
Click to expand it.
libraries/libldap/os-ip.c
+
4
−
5
View file @
e2cca72b
...
...
@@ -298,7 +298,7 @@ int
ldap_connect_to_host
(
LDAP
*
ld
,
Sockbuf
*
sb
,
int
proto
,
const
char
*
host
,
unsigned
long
address
,
int
port
,
int
async
)
unsigned
long
address
,
int
port
,
int
async
)
{
struct
sockaddr_in
sin
;
ber_socket_t
s
=
AC_SOCKET_INVALID
;
...
...
@@ -327,7 +327,7 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
hints
.
ai_family
=
AF_UNSPEC
;
hints
.
ai_socktype
=
socktype
;
snprintf
(
serv
,
sizeof
serv
,
"%d"
,
ntohs
(
port
)
);
snprintf
(
serv
,
sizeof
serv
,
"%d"
,
port
);
if
(
err
=
getaddrinfo
(
host
,
serv
,
&
hints
,
&
res
)
)
{
osip_debug
(
ld
,
"ldap_connect_to_host: getaddrinfo failed: %s
\n
"
,
AC_GAI_STRERROR
(
err
),
0
,
0
);
...
...
@@ -410,7 +410,6 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
rc
=
s
=
-
1
;
for
(
i
=
0
;
!
use_hp
||
(
hp
->
h_addr_list
[
i
]
!=
0
);
++
i
,
rc
=
-
1
)
{
s
=
ldap_int_socket
(
ld
,
PF_INET
,
socktype
);
if
(
s
==
AC_SOCKET_INVALID
)
{
/* use_hp ? continue : break; */
...
...
@@ -424,13 +423,13 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
(
void
)
memset
((
char
*
)
&
sin
,
'\0'
,
sizeof
(
struct
sockaddr_in
));
sin
.
sin_family
=
AF_INET
;
sin
.
sin_port
=
port
;
sin
.
sin_port
=
htons
((
short
)
port
)
;
p
=
(
char
*
)
&
sin
.
sin_addr
;
q
=
use_hp
?
(
char
*
)
hp
->
h_addr_list
[
i
]
:
(
char
*
)
&
address
;
AC_MEMCPY
(
p
,
q
,
sizeof
(
sin
.
sin_addr
)
);
osip_debug
(
ld
,
"ldap_connect_to_host: Trying %s:%d
\n
"
,
inet_ntoa
(
sin
.
sin_addr
),
ntohs
(
sin
.
sin_
port
)
,
0
);
inet_ntoa
(
sin
.
sin_addr
),
port
,
0
);
rc
=
ldap_pvt_connect
(
ld
,
s
,
(
struct
sockaddr
*
)
&
sin
,
sizeof
(
struct
sockaddr_in
),
...
...
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