david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

SSL requires inordinately large data storage

This commit is contained in:
Michael Brown 2007-02-01 07:22:13 +00:00
parent 2c67167929
commit abccb8b63c
1 changed files with 2 additions and 2 deletions

View File

@ -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 *) )));