Changeset 367
- Timestamp:
- 2007-04-22T04:31:36+02:00 (6 years ago)
- Location:
- branches/1.2
- Files:
-
- 2 edited
-
xcache.c (modified) (2 diffs)
-
xcache_globals.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.2/xcache.c
r358 r367 1529 1529 HashTable *ht; 1530 1530 1531 /* auth disabled, nothing to do.. */ 1532 if (!XG(auth_enabled)) { 1533 return 1; 1534 } 1535 1531 1536 if (cfg_get_string("xcache.admin.user", &admin_user) == FAILURE || !admin_user[0]) { 1532 1537 admin_user = NULL; … … 2335 2340 STD_PHP_INI_BOOLEAN("xcache.cacher", "1", PHP_INI_ALL, OnUpdateBool, cacher, zend_xcache_globals, xcache_globals) 2336 2341 STD_PHP_INI_BOOLEAN("xcache.stat", "1", PHP_INI_ALL, OnUpdateBool, stat, zend_xcache_globals, xcache_globals) 2342 STD_PHP_INI_BOOLEAN("xcache.enable_auth", "1", PHP_INI_SYSTEM, OnUpdateBool, auth_enabled, zend_xcache_globals, xcache_globals) 2337 2343 #ifdef HAVE_XCACHE_OPTIMIZER 2338 2344 STD_PHP_INI_BOOLEAN("xcache.optimizer", "0", PHP_INI_ALL, OnUpdateBool, optimizer, zend_xcache_globals, xcache_globals) -
branches/1.2/xcache_globals.h
r204 r367 15 15 time_t request_time; 16 16 long var_ttl; 17 zend_bool auth_enabled; 17 18 ZEND_END_MODULE_GLOBALS(xcache) 18 19
Note: See TracChangeset
for help on using the changeset viewer.

