The branch master has been updated
       via  0d0769a4dbe760c5c1b104fc11ca2a7c697f650d (commit)
      from  33bed28b399adb42b33d9a23814a62096ab84cb4 (commit)


- Log -----------------------------------------------------------------
commit 0d0769a4dbe760c5c1b104fc11ca2a7c697f650d
Author: Richard Levitte <[email protected]>
Date:   Sat Dec 26 23:42:11 2015 +0100

    Prefer ReuseAddr over Reuse, with IO::Socket::INET
    
    Reuse is deprecated and ReuseAddr is prefered, according to documentation.
    
    Reviewed-by: Viktor Dukhovni <[email protected]>

-----------------------------------------------------------------------

Summary of changes:
 util/TLSProxy/Proxy.pm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/TLSProxy/Proxy.pm b/util/TLSProxy/Proxy.pm
index 1e90e66..0abd312 100644
--- a/util/TLSProxy/Proxy.pm
+++ b/util/TLSProxy/Proxy.pm
@@ -173,7 +173,7 @@ sub clientstart
         LocalPort   => $self->proxy_port,
         Proto       => "tcp",
         Listen      => SOMAXCONN,
-        Reuse       => 1
+        ReuseAddr   => 1
     );
 
     if ($proxy_sock) {
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to