Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nadezhda Ivanova
OpenLDAP
Commits
891fc1e1
Commit
891fc1e1
authored
Mar 02, 2021
by
Quanah Gibson-Mount
Browse files
ITS#9481 - Fix cases when IPv6 support is disabled
parent
b91491a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
servers/slapd/main.c
View file @
891fc1e1
...
...
@@ -310,7 +310,9 @@ usage( char *name )
"usage: %s options
\n
"
,
name
);
fprintf
(
stderr
,
"
\t
-4
\t\t
IPv4 only
\n
"
#ifdef LDAP_PF_INET6
"
\t
-6
\t\t
IPv6 only
\n
"
#endif
"
\t
-T {acl|add|auth|cat|dn|index|modify|passwd|test}
\n
"
"
\t\t\t
Run in Tool mode
\n
"
"
\t
-c cookie
\t
Sync cookie of consumer
\n
"
...
...
@@ -483,10 +485,10 @@ int main( int argc, char **argv )
#endif
))
!=
EOF
)
{
switch
(
i
)
{
#ifdef LDAP_PF_INET6
case
'4'
:
slap_inet4or6
=
AF_INET
;
break
;
#ifdef LDAP_PF_INET6
case
'6'
:
slap_inet4or6
=
AF_INET6
;
break
;
...
...
servers/slapd/proxyp.c
View file @
891fc1e1
...
...
@@ -172,7 +172,7 @@ proxyp( ber_socket_t sfd, Sockaddr *from ) {
from
->
sa_in6_addr
.
sin6_port
=
ppa
.
ip6
.
src_port
;
#else
Debug
(
LDAP_DEBUG_ANY
,
"proxyp(%ld): "
"IPv6 proxied addresses disabled
,
\n
"
,
"IPv6 proxied addresses disabled
\n
"
,
(
long
)
sfd
);
return
0
;
#endif
...
...
servers/slapd/slap.h
View file @
891fc1e1
...
...
@@ -372,9 +372,7 @@ typedef struct Operation Operation;
typedef
struct
SlapReply
SlapReply
;
/* end of forward declarations */
#ifdef LDAP_PF_INET6
extern
int
slap_inet4or6
;
#endif
struct
OidMacro
{
struct
berval
som_oid
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment