From 0e34f35c08afcb8ccfb00ae7c63ea9d61803a982 Mon Sep 17 00:00:00 2001 From: David Garske Date: Thu, 26 Oct 2017 08:06:08 -0700 Subject: [PATCH] Increase the static memory pool in client to better support ECC or session certs. --- examples/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client/client.c b/examples/client/client.c index 13eaaf1e9..e6a32d45a 100644 --- a/examples/client/client.c +++ b/examples/client/client.c @@ -889,7 +889,7 @@ THREAD_RETURN WOLFSSL_THREAD client_test(void* args) #if (defined(HAVE_ECC) && !defined(ALT_ECC_SIZE)) \ || defined(SESSION_CERTS) /* big enough to handle most cases including session certs */ - byte memory[204000]; + byte memory[320000]; #else byte memory[80000]; #endif