diff options
author | Zeev Suraski <zeev@php.net> | 2001-08-31 20:03:09 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-08-31 20:03:09 +0000 |
commit | f7e7b42d4b0f3ce7c33d02cb58f8a104dfaa082c (patch) | |
tree | 82028d9fe87d4f25879f6a8ed107aaf49d297544 /ext/session/php_session.h | |
parent | cb386234eae2c9257bee3d381060e9420b014c81 (diff) | |
download | php-git-f7e7b42d4b0f3ce7c33d02cb58f8a104dfaa082c.tar.gz |
Restore session_adapt_url()
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index b3d9e06c43..a21132da93 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -89,7 +89,8 @@ typedef struct _php_ps_globals { zval *http_session_vars; zend_bool auto_start; zend_bool use_cookies; - zend_bool use_trans_sid; + zend_bool use_trans_sid; /* contains the INI value of whether to use trans-sid */ + zend_bool apply_trans_sid; /* whether or not to enable trans-sid for the current request */ zend_bool output_handler_registered; } php_ps_globals; @@ -144,7 +145,7 @@ typedef struct ps_serializer_struct { #define PS_SERIALIZER_ENTRY(x) \ { #x, PS_SERIALIZER_ENCODE_NAME(x), PS_SERIALIZER_DECODE_NAME(x) } -void session_adapt_url(const char *, size_t, char **, size_t * TSRMLS_DC); +PHPAPI void session_adapt_url(const char *, size_t, char **, size_t * TSRMLS_DC); void php_set_session_var(char *name, size_t namelen, zval *state_val,HashTable *var_hash TSRMLS_DC); int php_get_session_var(char *name, size_t namelen, zval ***state_var TSRMLS_DC); |