Merge branch 'ent-10270-tentacle-por-ssl-no-funciona-con-rocky-linux-8' into 'develop'

Added ssl connect error logging to tentacle

See merge request artica/pandorafms!5627
This commit is contained in:
Daniel Rodriguez 2023-03-31 07:31:43 +00:00
commit 473517650c
1 changed files with 4 additions and 1 deletions

View File

@ -899,8 +899,11 @@ sub serve_client() {
serve_proxy_connection ();
} else {
serve_connection ();
}
}
};
if($@) {
print_info($@);
}
$t_client_socket->shutdown (2);
$t_client_socket->close ();