cyassl: update to version 3.0.0

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>

SVN-Revision: 40621
This commit is contained in:
Hauke Mehrtens
2014-05-01 14:04:15 +00:00
parent e2cd04bfb3
commit 9be00fc256
3 changed files with 6 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
--- a/src/internal.c
+++ b/src/internal.c
@@ -4622,6 +4622,10 @@ int ProcessReply(CYASSL* ssl)
@@ -5063,6 +5063,10 @@ int ProcessReply(CYASSL* ssl)
b1 =
ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx++];
ssl->curSize = ((b0 & 0x7f) << 8) | b1;
ssl->curSize = (word16)(((b0 & 0x7f) << 8) | b1);
+
+ /* does not appear to a be a SSLv2 client hello */
+ if ( ssl->buffers.inputBuffer.buffer[ssl->buffers.inputBuffer.idx] != 1 )