|
Revision 894, 0.9 KB
(checked in by moo, 13 months ago)
|
|
adds xcache.admin.enable_auth
|
-
Property svn:eol-style set to
native
|
| Rev | Line | |
|---|
| [1] | 1 | |
|---|
| 2 | ZEND_BEGIN_MODULE_GLOBALS(xcache) |
|---|
| [405] | 3 | zend_bool initial_compile_file_called; /* true is origin_compile_file is called */ |
|---|
| [1] | 4 | zend_bool cacher; /* true if enabled */ |
|---|
| [165] | 5 | zend_bool stat; |
|---|
| [399] | 6 | zend_bool experimental; |
|---|
| [1] | 7 | #ifdef HAVE_XCACHE_OPTIMIZER |
|---|
| 8 | zend_bool optimizer; /* true if enabled */ |
|---|
| 9 | #endif |
|---|
| [28] | 10 | #ifdef HAVE_XCACHE_COVERAGER |
|---|
| [204] | 11 | zend_bool coverager; |
|---|
| 12 | zend_bool coverage_enabled; |
|---|
| [1] | 13 | HashTable *coverages; /* coverages[file][line] = times */ |
|---|
| 14 | #endif |
|---|
| 15 | xc_stack_t *php_holds; |
|---|
| 16 | xc_stack_t *var_holds; |
|---|
| 17 | time_t request_time; |
|---|
| [117] | 18 | long var_ttl; |
|---|
| [894] | 19 | zend_bool auth_enabled; |
|---|
| [344] | 20 | |
|---|
| [656] | 21 | zend_llist gc_op_arrays; |
|---|
| [498] | 22 | |
|---|
| [588] | 23 | #ifdef HAVE_XCACHE_CONSTANT |
|---|
| 24 | HashTable internal_constant_table; |
|---|
| 25 | #endif |
|---|
| [344] | 26 | HashTable internal_function_table; |
|---|
| 27 | HashTable internal_class_table; |
|---|
| [435] | 28 | zend_bool internal_table_copied; |
|---|
| [496] | 29 | |
|---|
| 30 | void *sandbox; |
|---|
| [1] | 31 | ZEND_END_MODULE_GLOBALS(xcache) |
|---|
| 32 | |
|---|
| 33 | ZEND_EXTERN_MODULE_GLOBALS(xcache) |
|---|
| 34 | |
|---|
| 35 | #ifdef ZTS |
|---|
| 36 | # define XG(v) TSRMG(xcache_globals_id, zend_xcache_globals *, v) |
|---|
| 37 | #else |
|---|
| 38 | # define XG(v) (xcache_globals.v) |
|---|
| 39 | #endif |
|---|