diff options
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index 8896f58eab..9ecef8b16b 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -112,6 +112,17 @@ typedef struct _php_ps_globals { long gc_maxlifetime; int module_number; long cache_expire; + union { + zval *names[6]; + struct { + zval *ps_open; + zval *ps_close; + zval *ps_read; + zval *ps_write; + zval *ps_destroy; + zval *ps_gc; + } name; + } mod_user_names; zend_bool bug_compat; /* Whether to behave like PHP 4.2 and earlier */ zend_bool bug_compat_warn; /* Whether to warn about it */ const struct ps_serializer_struct *serializer; |