From f38925740321b9310618d23d504e9272bd45df2b Mon Sep 17 00:00:00 2001 From: TingPing Date: Sat, 20 Sep 2014 13:56:09 -0400 Subject: [PATCH] Increase max len of chiper names For example ECDHE-ECRSA-AES256-GCM-SHA384 --- src/common/ssl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/ssl.h b/src/common/ssl.h index ad34944c..9c729855 100644 --- a/src/common/ssl.h +++ b/src/common/ssl.h @@ -37,7 +37,7 @@ struct cert_info { struct chiper_info { char version[16]; - char chiper[24]; + char chiper[48]; int chiper_bits; };