summaryrefslogtreecommitdiff
path: root/ext/session/php_session.h
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2002-05-03 08:00:41 +0000
committerThies C. Arntzen <thies@php.net>2002-05-03 08:00:41 +0000
commit9712a4b3c87f47146783a48f567c89253a720922 (patch)
treecb887ec83072c15250b68f8b4507eb908352a3bc /ext/session/php_session.h
parent9679267b88c7eb99277282222721b490c65a7f2f (diff)
downloadphp-git-9712a4b3c87f47146783a48f567c89253a720922.tar.gz
@ - Added output_add_rewrite_var() and output_remove_rewrite_var() to inject
@ and remove variables from the URL-Rewriter. (thies) i have also modified the session module to use this - so it doesn't need to fiddle with the output-system any more
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r--ext/session/php_session.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h
index ed54dd4da5..8bd90773b5 100644
--- a/ext/session/php_session.h
+++ b/ext/session/php_session.h
@@ -115,7 +115,6 @@ typedef struct _php_ps_globals {
zend_bool use_cookies;
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;
typedef php_ps_globals zend_ps_globals;
@@ -172,8 +171,6 @@ typedef struct ps_serializer_struct {
#define PS_SERIALIZER_ENTRY(x) \
{ #x, PS_SERIALIZER_ENCODE_NAME(x), PS_SERIALIZER_DECODE_NAME(x) }
-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, php_unserialize_data_t *var_hash TSRMLS_DC);
int php_get_session_var(char *name, size_t namelen, zval ***state_var TSRMLS_DC);