Skip to content

Commit

Permalink
Wait max. 60 seconds for s_client to connect
Browse files Browse the repository at this point in the history
  • Loading branch information
bernd-edlinger committed Apr 16, 2018
1 parent b0a9793 commit d1ad0da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/perl/TLSProxy/Proxy.pm
Expand Up @@ -349,7 +349,7 @@ sub clientstart

# Wait for incoming connection from client
my $fdset = IO::Select->new($self->{proxy_sock});
if (!$fdset->can_read(1)) {
if (!$fdset->can_read(60)) {
kill(3, $self->{real_serverpid});
die "s_client didn't try to connect\n";
}
Expand Down

0 comments on commit d1ad0da

Please sign in to comment.