summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-ssl-utils.c
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-01-26 08:49:06 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-01-26 08:49:06 +0000
commitc4fe9a28ca8281d11facbcdf908aa9391309891e (patch)
tree5bdbf9af38cec945f8fb5c03073f89cb6dce5fff /epan/dissectors/packet-ssl-utils.c
parentcf1bb441058aa286e0223de976ef99592722e925 (diff)
downloadwireshark-c4fe9a28ca8281d11facbcdf908aa9391309891e.tar.gz
From Kaspar Brand:
SSL/TLS dissector: add support for "Certificate Status" messages (aka OCSP stapling) https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=5503 svn path=/trunk/; revision=35655
Diffstat (limited to 'epan/dissectors/packet-ssl-utils.c')
-rw-r--r--epan/dissectors/packet-ssl-utils.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ssl-utils.c b/epan/dissectors/packet-ssl-utils.c
index 0fa08b54a1..131c12657d 100644
--- a/epan/dissectors/packet-ssl-utils.c
+++ b/epan/dissectors/packet-ssl-utils.c
@@ -472,6 +472,7 @@ const value_string ssl_31_handshake_type[] = {
{ SSL_HND_CERT_VERIFY, "Certificate Verify" },
{ SSL_HND_CLIENT_KEY_EXCHG, "Client Key Exchange" },
{ SSL_HND_FINISHED, "Finished" },
+ { SSL_HND_CERT_STATUS, "Certificate Status" },
{ 0x00, NULL }
};
@@ -905,6 +906,11 @@ const value_string tls_signature_algorithm[] = {
{ 0, NULL }
};
+const value_string tls_cert_status_type[] = {
+ { SSL_HND_CERT_STATUS_TYPE_OCSP, "OCSP" },
+ { 0, NULL }
+};
+
/* we keep this internal to packet-ssl-utils, as there should be
no need to access it any other way.