From 3ce020a5fcb8035a41f3248c990b2abfa60eb325 Mon Sep 17 00:00:00 2001 From: Hauke Mehrtens Date: Mon, 26 May 2014 19:29:45 +0300 Subject: ssl-utils: fix TLS number of padding extension The padding extension got the number 21 (0x15) by the IANA and not 20 (0x14), see this list for details: https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml The number 20 is assigned to the server certificate type extension. Change-Id: I17271a3a336bcf5a323f15da3a5301115ca4cb45 Signed-off-by: Hauke Mehrtens Reviewed-on: https://code.wireshark.org/review/1822 Reviewed-by: Martin Kaiser --- epan/dissectors/packet-ssl-utils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-ssl-utils.h') diff --git a/epan/dissectors/packet-ssl-utils.h b/epan/dissectors/packet-ssl-utils.h index 3f93a65e04..63e3ba37c6 100644 --- a/epan/dissectors/packet-ssl-utils.h +++ b/epan/dissectors/packet-ssl-utils.h @@ -164,7 +164,7 @@ #define SSL_HND_HELLO_EXT_HEARTBEAT 0x000f #define SSL_HND_HELLO_EXT_ALPN 0x0010 #define SSL_HND_HELLO_EXT_STATUS_REQUEST_V2 0x0011 -#define SSL_HND_HELLO_EXT_PADDING 0x0014 +#define SSL_HND_HELLO_EXT_PADDING 0x0015 #define SSL_HND_HELLO_EXT_SESSION_TICKET 0x0023 #define SSL_HND_HELLO_EXT_RENEG_INFO 0xff01 #define SSL_HND_HELLO_EXT_NPN 0x3374 -- cgit v1.2.3