summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMichael Brown2007-02-01 08:22:13 +0100
committerMichael Brown2007-02-01 08:22:13 +0100
commitabccb8b63c1b3908d5a93ba8c56c130d0784aa06 (patch)
tree538540ab97887a62e2a5ee9da891e695ff1d5534 /src
parentDon't pass through zero-length requests (diff)
downloadipxe-abccb8b63c1b3908d5a93ba8c56c130d0784aa06.tar.gz
ipxe-abccb8b63c1b3908d5a93ba8c56c130d0784aa06.tar.xz
ipxe-abccb8b63c1b3908d5a93ba8c56c130d0784aa06.zip
SSL requires inordinately large data storage
Diffstat (limited to 'src')
-rw-r--r--src/core/heap.c4
1 files changed, 2 insertions, 2 deletions
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 *) )));