]> git.ipfire.org Git - thirdparty/ipxe.git/commitdiff
SSL requires inordinately large data storage
authorMichael Brown <mcb30@etherboot.org>
Thu, 1 Feb 2007 07:22:13 +0000 (07:22 +0000)
committerMichael Brown <mcb30@etherboot.org>
Thu, 1 Feb 2007 07:22:13 +0000 (07:22 +0000)
src/core/heap.c

index 4afd270b12419d575580c0b62122c379f3a05022..4a84fc262753381bdefd51937a54ba2c15c70b8c 100644 (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 *) )));