projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
adc7e22
)
Fix Invalid Argument return code from IP_Factory in connect_to_server().
author
Matthias Kraft
<Matthias.Kraft@softwareag.com>
Mon, 4 Feb 2019 08:55:07 +0000
(09:55 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Mon, 4 Feb 2019 20:50:23 +0000
(21:50 +0100)
Fixes #7732
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8158)
util/perl/TLSProxy/Proxy.pm
patch
|
blob
|
history
diff --git
a/util/perl/TLSProxy/Proxy.pm
b/util/perl/TLSProxy/Proxy.pm
index 38213856f51d542a4029a14abcfb386e8daecfab..a583e636cd9113d7d2d5a7a18bbda61cf459782c 100644
(file)
--- a/
util/perl/TLSProxy/Proxy.pm
+++ b/
util/perl/TLSProxy/Proxy.pm
@@
-44,7
+44,7
@@
BEGIN
$s->close();
};
if ($@ eq "") {
- $IP_factory = sub { IO::Socket::INET6->new(@_); };
+ $IP_factory = sub { IO::Socket::INET6->new(
Domain => AF_INET6,
@_); };
$have_IPv6 = 1;
} else {
eval {