From: Michael Brown Date: Thu, 1 Feb 2007 07:22:13 +0000 (+0000) Subject: SSL requires inordinately large data storage X-Git-Tag: v0.9.3~461 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abccb8b63c1b3908d5a93ba8c56c130d0784aa06;p=thirdparty%2Fipxe.git SSL requires inordinately large data storage --- diff --git a/src/core/heap.c b/src/core/heap.c index 4afd270b1..4a84fc262 100644 --- a/src/core/heap.c +++ b/src/core/heap.c @@ -11,9 +11,9 @@ /** * Heap size * - * Currently fixed at 48kB. + * Currently fixed at 128kB. */ -#define HEAP_SIZE ( 48 * 1024 ) +#define HEAP_SIZE ( 128 * 1024 ) /** The heap itself */ char heap[HEAP_SIZE] __attribute__ (( aligned ( __alignof__(void *) )));