Added ssl connect error logging to tentacle

This commit is contained in:
Calvo 2023-03-23 19:04:43 +01:00
parent cbbddd1ac6
commit 62d4fd717b
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 ();