aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssl-utils.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-22 08:58:19 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-22 08:58:19 +0000
commitafa29e0070eb571615fa756201a2fb070290ae03 (patch)
tree175a6bc5edc745eb8edb7c8a04b083951cd4af2f /epan/dissectors/packet-ssl-utils.h
parentdba2c07cba03310d185a8ef5f5ef4bba6b51117e (diff)
From Yaniv Kaul:
Enhance the SSL dissector to dissect some Hello extensions. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6979 svn path=/trunk/; revision=41736
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.h')
-rw-r--r--epan/dissectors/packet-ssl-utils.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssl-utils.h b/epan/dissectors/packet-ssl-utils.h
index 59565b1ef5..70d3744805 100644
--- a/epan/dissectors/packet-ssl-utils.h
+++ b/epan/dissectors/packet-ssl-utils.h
@@ -146,10 +146,12 @@
#define PCT_ERR_SERVER_AUTH_FAILED 0x05
#define PCT_ERR_SPECS_MISMATCH 0x06
+#define SSL_HND_HELLO_EXT_SERVER_NAME 0x0
#define SSL_HND_HELLO_EXT_ELLIPTIC_CURVES 0x000a
#define SSL_HND_HELLO_EXT_EC_POINT_FORMATS 0x000b
#define SSL_HND_HELLO_EXT_HEARTBEAT 0x000f
-
+#define SSL_HND_HELLO_EXT_RENEG_INFO 0xff01
+#define SSL_HND_HELLO_EXT_NPN 0x3374
#define SSL_HND_CERT_STATUS_TYPE_OCSP 1
/*
@@ -188,6 +190,7 @@ extern const value_string tls_cert_status_type[];
extern const value_string ssl_extension_curves[];
extern const value_string ssl_extension_ec_point_formats[];
extern const value_string ssl_curve_types[];
+extern const value_string tls_hello_ext_server_name_type_vs[];
/* XXX Should we use GByteArray instead? */
typedef struct _StringInfo {