summaryrefslogtreecommitdiffstats
path: root/apps/s_cb.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2006-01-11 06:10:40 +0000
committerBodo Möller <bodo@openssl.org>2006-01-11 06:10:40 +0000
commit241520e66d3ece1054beae93ff96978d0299cae4 (patch)
tree11e6149f50fb9e45aaba9635a138c93059c1c988 /apps/s_cb.c
parenta13c20f60353d3cd3fdd4f23563819eeb4234528 (diff)
More TLS extension related changes.
Submitted by: Peter Sylvester
Diffstat (limited to 'apps/s_cb.c')
-rw-r--r--apps/s_cb.c17
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index 9a35d46adc..573f98cea6 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -56,7 +56,7 @@
* [including the GNU Public Licence.]
*/
/* ====================================================================
- * Copyright (c) 1998-2001 The OpenSSL Project. All rights reserved.
+ * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
@@ -504,6 +504,21 @@ 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;
}
}
}