aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl-utils.h
diff options
context:
space:
mode:
authorsake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-05 23:05:20 +0000
committersake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-11-05 23:05:20 +0000
commitc6164a23d16c3d4c0d7ecea0420f17f13c9ede63 (patch)
treef4392373dcb276c19e4a0268e9674e55aea9b1f3 /epan/dissectors/packet-ssl-utils.h
parent7d9c41341e742c9829a2e814d44f2e94b5bab9b9 (diff)
Bug 1954 From Mikael Magnusson :
This patch updates the DTLS dissector to be compatible with OpenSSL 0.9.8f in the following ways: * Handle both SSL version number 0xfeff (RFC 4347 and OpenSSL 0.9.8f), and 0x100 (Used by OpenSSL 0.9.8e and earlier) * Reassemble fragmented handshake messages. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23369 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.h')
-rw-r--r--epan/dissectors/packet-ssl-utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssl-utils.h b/epan/dissectors/packet-ssl-utils.h
index e6d45f4a93..cac2725450 100644
--- a/epan/dissectors/packet-ssl-utils.h
+++ b/epan/dissectors/packet-ssl-utils.h
@@ -185,7 +185,8 @@ typedef struct _StringInfo {
#define SSLV3_VERSION 0x300
#define TLSV1_VERSION 0x301
#define TLSV1DOT1_VERSION 0x302
-#define DTLSV1DOT0_VERSION 0x100
+#define DTLSV1DOT0_VERSION 0xfeff
+#define DTLSV1DOT0_VERSION_NOT 0x100
#define SSL_CLIENT_RANDOM 1
#define SSL_SERVER_RANDOM 2