diff options
Diffstat (limited to 'php_suhosin7.h')
| -rw-r--r-- | php_suhosin7.h | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/php_suhosin7.h b/php_suhosin7.h index 1e674ad..7a57fe1 100644 --- a/php_suhosin7.h +++ b/php_suhosin7.h | |||
| @@ -67,7 +67,7 @@ extern zend_module_entry suhosin7_module_entry; | |||
| 67 | // PHP_RSHUTDOWN_FUNCTION(suhosin); | 67 | // PHP_RSHUTDOWN_FUNCTION(suhosin); |
| 68 | // PHP_MINFO_FUNCTION(suhosin); | 68 | // PHP_MINFO_FUNCTION(suhosin); |
| 69 | 69 | ||
| 70 | // #include "ext/standard/basic_functions.h" | 70 | #include "ext/standard/basic_functions.h" |
| 71 | 71 | ||
| 72 | static inline int suhosin_is_protected_varname(char *var, int var_len) | 72 | static inline int suhosin_is_protected_varname(char *var, int var_len) |
| 73 | { | 73 | { |
| @@ -252,20 +252,20 @@ ZEND_BEGIN_MODULE_GLOBALS(suhosin7) | |||
| 252 | zend_bool disable_display_errors; | 252 | zend_bool disable_display_errors; |
| 253 | 253 | ||
| 254 | /* random number generator */ | 254 | /* random number generator */ |
| 255 | // php_uint32 r_state[625]; | 255 | php_uint32 r_state[625]; |
| 256 | // php_uint32 *r_next; | 256 | php_uint32 *r_next; |
| 257 | // int r_left; | 257 | int r_left; |
| 258 | // zend_bool srand_ignore; | 258 | zend_bool srand_ignore; |
| 259 | // zend_bool mt_srand_ignore; | 259 | zend_bool mt_srand_ignore; |
| 260 | // php_uint32 mt_state[625]; | 260 | php_uint32 mt_state[625]; |
| 261 | // php_uint32 *mt_next; | 261 | php_uint32 *mt_next; |
| 262 | // int mt_left; | 262 | int mt_left; |
| 263 | // | 263 | |
| 264 | // char *seedingkey; | 264 | char *seedingkey; |
| 265 | // zend_bool reseed_every_request; | 265 | zend_bool reseed_every_request; |
| 266 | // | 266 | // |
| 267 | // zend_bool r_is_seeded; | 267 | zend_bool r_is_seeded; |
| 268 | // zend_bool mt_is_seeded; | 268 | zend_bool mt_is_seeded; |
| 269 | 269 | ||
| 270 | 270 | ||
| 271 | /* memory_limit */ | 271 | /* memory_limit */ |
