TLS: use define value for ssl_versions value string

and also move on the top and not too far from ssl_version_short value_string

Change-Id: I9012d0d0839fd29da500a7f37a83ecc982f0fb5b
Reviewed-on: https://code.wireshark.org/review/17887
Reviewed-by: Peter Wu <peter@lekensteyn.nl>
This commit is contained in:
Alexis La Goutte 2016-09-23 08:12:13 +02:00 committed by Peter Wu
parent cc50515e57
commit 2e0cbb7ae7
1 changed files with 13 additions and 13 deletions

View File

@ -72,6 +72,19 @@ const value_string ssl_version_short_names[] = {
{ 0x00, NULL }
};
const value_string ssl_versions[] = {
{ SSLV2_VERSION, "SSL 2.0" },
{ SSLV3_VERSION, "SSL 3.0" },
{ TLSV1_VERSION, "TLS 1.0" },
{ TLSV1DOT1_VERSION, "TLS 1.1" },
{ TLSV1DOT2_VERSION, "TLS 1.2" },
{ TLSV1DOT3_VERSION, "TLS 1.3" },
{ DTLSV1DOT0_OPENSSL_VERSION, "DTLS 1.0 (OpenSSL pre 0.9.8f)" },
{ DTLSV1DOT0_VERSION, "DTLS 1.0" },
{ DTLSV1DOT2_VERSION, "DTLS 1.2" },
{ 0x00, NULL }
};
const value_string ssl_20_msg_types[] = {
{ SSL2_HND_ERROR, "Error" },
{ SSL2_HND_CLIENT_HELLO, "Client Hello" },
@ -469,19 +482,6 @@ const value_string ssl_31_content_type[] = {
{ 0x00, NULL }
};
const value_string ssl_versions[] = {
{ 0xfefd, "DTLS 1.2" },
{ 0xfeff, "DTLS 1.0" },
{ 0x0100, "DTLS 1.0 (OpenSSL pre 0.9.8f)" },
{ 0x0304, "TLS 1.3" },
{ 0x0303, "TLS 1.2" },
{ 0x0302, "TLS 1.1" },
{ 0x0301, "TLS 1.0" },
{ 0x0300, "SSL 3.0" },
{ 0x0002, "SSL 2.0" },
{ 0x00, NULL }
};
#if 0
/* XXX - would be used if we dissected the body of a Change Cipher Spec
message. */