summaryrefslogtreecommitdiff
path: root/src/php_snuffleupagus.h
diff options
context:
space:
mode:
authorBen Fuhrmannek2021-09-15 20:26:02 +0200
committerBen Fuhrmannek2021-09-15 20:26:02 +0200
commit31d6a3cddd18cef447698ba2beaa7b5d9ab9dd94 (patch)
tree015c69027703d17061d429375de84a86cc51186a /src/php_snuffleupagus.h
parent8e42064026906f0f25caca237e4624b5b3c5087e (diff)
implemented execution depth limit
Diffstat (limited to '')
-rw-r--r--src/php_snuffleupagus.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/php_snuffleupagus.h b/src/php_snuffleupagus.h
index e11f976..0c7dc4b 100644
--- a/src/php_snuffleupagus.h
+++ b/src/php_snuffleupagus.h
@@ -108,6 +108,7 @@ ZEND_BEGIN_MODULE_GLOBALS(snuffleupagus)
108size_t in_eval; 108size_t in_eval;
109sp_config config; 109sp_config config;
110int is_config_valid; // 1 = valid, 0 = invalid, -1 = none 110int is_config_valid; // 1 = valid, 0 = invalid, -1 = none
111u_long execution_depth;
111bool allow_broken_configuration; 112bool allow_broken_configuration;
112HashTable *disabled_functions_hook; 113HashTable *disabled_functions_hook;
113HashTable *sp_internal_functions_hook; 114HashTable *sp_internal_functions_hook;