[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Matt Caswell matt at openssl.org
Tue Jan 16 17:27:35 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  baa5d0ed2c907ceb3890f055e73f01ef2b2353ee (commit)
      from  d320e803d97fe9cef872a3eafa3359886b42a7da (commit)


- Log -----------------------------------------------------------------
commit baa5d0ed2c907ceb3890f055e73f01ef2b2353ee
Author: Matt Caswell <matt at openssl.org>
Date:   Tue Jan 16 15:04:51 2018 +0000

    Extend timeout for TLSProxy
    
    I received this error from a TLSProxy test:
    
    Failed to start up server (localhost,4443): Transport endpoint is not
    connected
    
    So, extend the timeout before we give up trying to connect to the server.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/5088)
    
    (cherry picked from commit 82992a4130e668c14ff66fca26170629b23c4556)

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

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

diff --git a/util/perl/TLSProxy/Proxy.pm b/util/perl/TLSProxy/Proxy.pm
index 70f9bcb..3848135 100644
--- a/util/perl/TLSProxy/Proxy.pm
+++ b/util/perl/TLSProxy/Proxy.pm
@@ -241,7 +241,7 @@ sub clientstart
     print "Connection opened\n";
 
     # Now connect to the server
-    my $retry = 10;
+    my $retry = 50;
     my $server_sock;
     #We loop over this a few times because sometimes s_server can take a while
     #to start up


More information about the openssl-commits mailing list