Просмотр исходного кода

SSL requires inordinately large data storage

tags/v0.9.3
Michael Brown 17 лет назад
Родитель
Сommit
abccb8b63c
1 измененных файлов: 2 добавлений и 2 удалений
  1. 2
    2
      src/core/heap.c

+ 2
- 2
src/core/heap.c Просмотреть файл

11
 /**
11
 /**
12
  * Heap size
12
  * Heap size
13
  *
13
  *
14
- * Currently fixed at 48kB.
14
+ * Currently fixed at 128kB.
15
  */
15
  */
16
-#define HEAP_SIZE ( 48 * 1024 )
16
+#define HEAP_SIZE ( 128 * 1024 )
17
 
17
 
18
 /** The heap itself */
18
 /** The heap itself */
19
 char heap[HEAP_SIZE] __attribute__ (( aligned ( __alignof__(void *) )));
19
 char heap[HEAP_SIZE] __attribute__ (( aligned ( __alignof__(void *) )));

Загрузка…
Отмена
Сохранить