diff options
| author | Ben Fuhrmannek | 2016-03-03 15:36:40 +0100 |
|---|---|---|
| committer | Ben Fuhrmannek | 2016-03-03 15:36:40 +0100 |
| commit | 3e77c15105551dee21edac0ab090ffaf10c4ff4d (patch) | |
| tree | 7e756df9267432260e4a329f9f3c0eb7b978c763 /suhosin7.c | |
| parent | adbeda7daaa6ff3a1fbc25d35cc62a1979214f7f (diff) | |
memory limit
Diffstat (limited to 'suhosin7.c')
| -rw-r--r-- | suhosin7.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -309,8 +309,8 @@ PHP_INI_BEGIN() | |||
| 309 | // | 309 | // |
| 310 | STD_S7_INI_BOOLEAN("suhosin.multiheader", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscBool, allow_multiheader) | 310 | STD_S7_INI_BOOLEAN("suhosin.multiheader", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscBool, allow_multiheader) |
| 311 | // STD_S7_INI_ENTRY("suhosin.mail.protect", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscLong, mailprotect) | 311 | // STD_S7_INI_ENTRY("suhosin.mail.protect", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscLong, mailprotect) |
| 312 | // STD_S7_INI_ENTRY("suhosin.memory_limit", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscLong, memory_limit) | 312 | STD_S7_INI_ENTRY("suhosin.memory_limit", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscLong, memory_limit) |
| 313 | // STD_S7_INI_BOOLEAN("suhosin.simulation", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscBool, simulation) | 313 | STD_S7_INI_BOOLEAN("suhosin.simulation", "0", PHP_INI_PERDIR|PHP_INI_SYSTEM, OnUpdateMiscBool, simulation) |
| 314 | // STD_S7_INI_ENTRY("suhosin.filter.action", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateMiscString, filter_action) | 314 | // STD_S7_INI_ENTRY("suhosin.filter.action", NULL, PHP_INI_SYSTEM|PHP_INI_PERDIR, OnUpdateMiscString, filter_action) |
| 315 | // | 315 | // |
| 316 | STD_S7_INI_BOOLEAN("suhosin.protectkey", "1", PHP_INI_SYSTEM, OnUpdateBool, protectkey) | 316 | STD_S7_INI_BOOLEAN("suhosin.protectkey", "1", PHP_INI_SYSTEM, OnUpdateBool, protectkey) |
| @@ -517,7 +517,7 @@ PHP_MINIT_FUNCTION(suhosin7) | |||
| 517 | suhosin_hook_header_handler(); | 517 | suhosin_hook_header_handler(); |
| 518 | suhosin_hook_execute(); | 518 | suhosin_hook_execute(); |
| 519 | 519 | ||
| 520 | // suhosin_hook_memory_limit(); | 520 | suhosin_hook_memory_limit(); |
| 521 | // suhosin_hook_sha256(); | 521 | // suhosin_hook_sha256(); |
| 522 | 522 | ||
| 523 | return SUCCESS; | 523 | return SUCCESS; |
