projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4deefd6
)
for test_sslvertol, add a value to display SSL version < 3 in debug
author
Richard Levitte
<levitte@openssl.org>
Thu, 13 Aug 2015 17:15:45 +0000
(19:15 +0200)
committer
Richard Levitte
<levitte@openssl.org>
Thu, 13 Aug 2015 20:05:25 +0000
(22:05 +0200)
Reviewed-by: Matt Caswell <matt@openssl.org>
util/TLSProxy/Record.pm
patch
|
blob
|
history
diff --git
a/util/TLSProxy/Record.pm
b/util/TLSProxy/Record.pm
index 1d1050867c416c19101ec5810dd48110722849d8..124f924979222ba29bb5732c5a50082b36b09c8c 100644
(file)
--- 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