summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authormancha <mancha1@hush.com>2014-03-27 00:47:14 +0000
committerDr. Stephen Henson <steve@openssl.org>2014-03-27 00:54:16 +0000
commita375025e4dd58a05e926a5384774a85671695dd9 (patch)
tree539aeda4483ab674eb4c0f843cb6f8afe4de6acc /apps
parentd471adf351b92d38992cbe2374ad6e9d81a51a75 (diff)
Fix alert handling.
Fix OpenSSL 0.9.8 alert handling. PR#3038
Diffstat (limited to 'apps')
-rw-r--r--apps/s_cb.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 97caffc401..df922f3af5 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -518,6 +518,24 @@ void MS_CALLBACK msg_cb(int write_p, int version, int content_type, const void *
case 100:
str_details2 = " no_renegotiation";
break;
+ case 110:
+ str_details2 = " unsupported_extension";
+ break;
+ case 111:
+ str_details2 = " certificate_unobtainable";
+ break;
+ case 112:
+ str_details2 = " unrecognized_name";
+ break;
+ case 113:
+ str_details2 = " bad_certificate_status_response";
+ break;
+ case 114:
+ str_details2 = " bad_certificate_hash_value";
+ break;
+ case 115:
+ str_details2 = " unknown_psk_identity";
+ break;
}
}
}