| Server IP : 103.4.122.14 / Your IP : 216.73.216.103 Web Server : Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips System : Linux cwp2.slnet.com.au 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : statewid ( 1251) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/local/src/xcache-3.2.0/xcache/ |
Upload File : |
#ifndef XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C #define XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C #if _MSC_VER > 1000 #pragma once #endif /* _MSC_VER > 1000 */ /* Purpose: run specified function in compiler sandbox, restore everything to previous state after it returns */ #include "xc_compatibility.h" int xc_sandbox_module_init(int module_number TSRMLS_DC); void xc_sandbox_module_shutdown(); /* return op_array to install */ typedef zend_op_array *(*xc_sandboxed_func_t)(void *data TSRMLS_DC); zend_op_array *xc_sandbox(xc_sandboxed_func_t sandboxed_func, void *data, ZEND_24(NOTHING, const) char *filename TSRMLS_DC); const Bucket *xc_sandbox_user_function_begin(TSRMLS_D); const Bucket *xc_sandbox_user_class_begin(TSRMLS_D); zend_uint xc_sandbox_compilererror_cnt(TSRMLS_D); #ifdef XCACHE_ERROR_CACHING struct _xc_compilererror_t; struct _xc_compilererror_t *xc_sandbox_compilererrors(TSRMLS_D); zend_uint xc_sandbox_compilererror_cnt(TSRMLS_D); #endif #endif /* XC_SANDBOX_H_3AFE4094B1D005188B909F9B6538599C */