aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl-utils.h
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2014-05-26 19:29:45 +0300
committerMartin Kaiser <wireshark@kaiser.cx>2014-05-27 20:56:02 +0000
commit3ce020a5fcb8035a41f3248c990b2abfa60eb325 (patch)
treee256a5d6bef710b26548f28ef1a8865802c3c56b /epan/dissectors/packet-ssl-utils.h
parent0911ce12ff3304eb7a745a409fc3a1eb6797e0d5 (diff)
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 <hauke@hauke-m.de> Reviewed-on: https://code.wireshark.org/review/1822 Reviewed-by: Martin Kaiser <wireshark@kaiser.cx>
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.h')
-rw-r--r--epan/dissectors/packet-ssl-utils.h2
1 files changed, 1 insertions, 1 deletions
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