From 3f473b936a292262a020353e99f896cabfedc947 Mon Sep 17 00:00:00 2001 From: Andy Polyakov Date: Mon, 16 Apr 2018 14:10:39 +0200 Subject: [PATCH] TLSProxy/Message.pm: refine end-of-conversation detection logic. Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/5975) --- util/perl/TLSProxy/Message.pm | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/util/perl/TLSProxy/Message.pm b/util/perl/TLSProxy/Message.pm index 68179d914d..4a60ba0157 100644 --- a/util/perl/TLSProxy/Message.pm +++ b/util/perl/TLSProxy/Message.pm @@ -267,14 +267,17 @@ sub get_messages } } elsif ($record->content_type == TLSProxy::Record::RT_ALERT) { my ($alertlev, $alertdesc) = unpack('CC', $record->decrypt_data); + print " [$alertlev, $alertdesc]\n"; #A CloseNotify from the client indicates we have finished successfully #(we assume) if (!$end && !$server && $alertlev == AL_LEVEL_WARN && $alertdesc == AL_DESC_CLOSE_NOTIFY) { $success = 1; } - #All alerts end the test - $end = 1; + #Fatal or close notify alerts end the test + if ($alertlev == AL_LEVEL_FATAL || $alertdesc == AL_DESC_CLOSE_NOTIFY) { + $end = 1; + } } return @messages; -- 2.25.1