summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2015-08-13 19:15:45 +0200
committerRichard Levitte <levitte@openssl.org>2015-08-13 22:05:25 +0200
commit00bf5001f72144062fe3f7973b968be534ac1246 (patch)
treef0d8e40c9d1b3aedc2ddae75ba50f733d97b48a1 /util
parent4deefd6567cce43ef6c6b910693c093e9598f556 (diff)
for test_sslvertol, add a value to display SSL version < 3 in debug
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'util')
-rw-r--r--util/TLSProxy/Record.pm6
1 files changed, 4 insertions, 2 deletions
diff --git a/util/TLSProxy/Record.pm b/util/TLSProxy/Record.pm
index 1d1050867c..124f924979 100644
--- a/util/TLSProxy/Record.pm
+++ b/util/TLSProxy/Record.pm
@@ -83,7 +83,8 @@ use constant {
VERS_TLS_1_2 => 771,
VERS_TLS_1_1 => 770,
VERS_TLS_1_0 => 769,
- VERS_SSL_3_0 => 768
+ VERS_SSL_3_0 => 768,
+ VERS_SSL_LT_3_0 => 767
};
my %tls_version = (
@@ -91,7 +92,8 @@ my %tls_version = (
VERS_TLS_1_2, "TLS1.2",
VERS_TLS_1_1, "TLS1.1",
VERS_TLS_1_0, "TLS1.0",
- VERS_SSL_3_0, "SSL3"
+ VERS_SSL_3_0, "SSL3",
+ VERS_SSL_LT_3_0, "SSL<3"
);
#Class method to extract records from a packet of data