summaryrefslogtreecommitdiff
path: root/php_suhosin.h
diff options
context:
space:
mode:
authorBen Fuhrmannek2016-03-01 14:55:46 +0100
committerBen Fuhrmannek2016-03-01 14:55:46 +0100
commitc180da6de0851521cae98a1b385e03a120d5cf61 (patch)
treeddd49425cf08f6b70b6cb88858fbe0d1f50d2456 /php_suhosin.h
parent7060d15d6d2624f81cb3a57ee319fa61ba06ad89 (diff)
added secure configuration loader (#28)secureconfig
Diffstat (limited to 'php_suhosin.h')
-rw-r--r--php_suhosin.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/php_suhosin.h b/php_suhosin.h
index 824ce21..3fa4160 100644
--- a/php_suhosin.h
+++ b/php_suhosin.h
@@ -320,6 +320,9 @@ ZEND_BEGIN_MODULE_GLOBALS(suhosin)
320 zend_bool sql_perdir; 320 zend_bool sql_perdir;
321 zend_bool misc_perdir; 321 zend_bool misc_perdir;
322 322
323 // misc
324 char* secureconfig_cryptkey;
325
323ZEND_END_MODULE_GLOBALS(suhosin) 326ZEND_END_MODULE_GLOBALS(suhosin)
324 327
325#ifdef ZTS 328#ifdef ZTS
@@ -400,6 +403,7 @@ int suhosin_rfc1867_filter(unsigned int event, void *event_data, void **extra TS
400void suhosin_bailout(TSRMLS_D); 403void suhosin_bailout(TSRMLS_D);
401size_t suhosin_strnspn(const char *input, size_t n, const char *accept); 404size_t suhosin_strnspn(const char *input, size_t n, const char *accept);
402size_t suhosin_strncspn(const char *input, size_t n, const char *reject); 405size_t suhosin_strncspn(const char *input, size_t n, const char *reject);
406void suhosin_hook_secureconfig(TSRMLS_D);
403 407
404 408
405#endif /* PHP_SUHOSIN_H */ 409#endif /* PHP_SUHOSIN_H */