Ethereal-dev: [Ethereal-dev] packet-ssl.c patch (RFC 3943)

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Yaniv Kaul <ykaul@xxxxxxxxxxxx>
Date: Tue, 30 Nov 2004 20:46:25 +0200
Adds LZS as a compression method, per 'Transport Layer Security (TLS) Protocol Compression UsingLempel-Ziv-Stac (LZS)' RFC (RFC 3943).


Index: epan/dissectors/packet-ssl.c
===================================================================
--- epan/dissectors/packet-ssl.c	(revision 12625)
+++ epan/dissectors/packet-ssl.c	(working copy)
@@ -490,6 +490,7 @@
 static const value_string ssl_31_compression_method[] = {
     { 0, "null" },
     { 1, "ZLIB" },
+    { 64, "LZS" },
     { 0x00, NULL }
 };