aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorDaniel Black <daniel.black@openquery.com>2016-02-03 20:04:10 -0500
committerRich Salz <rsalz@openssl.org>2016-02-04 08:20:25 -0500
commit7429b3989d21a259ee0da00d9c626a09730aad8b (patch)
tree1647efff77a58d60ac2b99ea36d8024806796143 /apps
parent3a6a4a93518fbb3d96632bfdcb538d340f29c56b (diff)
downloadopenssl-7429b3989d21a259ee0da00d9c626a09730aad8b.tar.gz
RT2887: Add more packet and handshake types
Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/s_cb.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index dd4aa929c2..b8e1ccc1f2 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -596,6 +596,7 @@ static STRINT_PAIR handshakes[] = {
{", ClientHello", 1},
{", ServerHello", 2},
{", HelloVerifyRequest", 3},
+ {", NewSessionTicket", 4},
{", Certificate", 11},
{", ServerKeyExchange", 12},
{", CertificateRequest", 13},
@@ -603,6 +604,9 @@ static STRINT_PAIR handshakes[] = {
{", CertificateVerify", 15},
{", ClientKeyExchange", 16},
{", Finished", 20},
+ {", CertificateUrl", 21},
+ {", CertificateStatus", 22},
+ {", SupplementalData", 23},
{NULL}
};
@@ -645,6 +649,9 @@ void msg_cb(int write_p, int version, int content_type, const void *buf,
if (len > 0)
str_details1 = lookup((int)bp[0], handshakes, "???");
break;
+ case 23:
+ str_content_type = "ApplicationData";
+ break;
#ifndef OPENSSL_NO_HEARTBEATS
case 24:
str_details1 = ", Heartbeat";