diff options
author | Sascha Schumann <sas@php.net> | 2002-06-12 08:18:36 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-06-12 08:18:36 +0000 |
commit | dcf67c4433bfe4177595be7c5ae68ae4c308e835 (patch) | |
tree | 4a2d88291e6552840e17b52bfed78480ad5d4d5a /ext/session/php_session.h | |
parent | e64b5c704543df0e9d1925cf52622b1dd686410e (diff) | |
download | php-git-dcf67c4433bfe4177595be7c5ae68ae4c308e835.tar.gz |
This option enables administrators to make their users invulnerable to
attacks which involve passing session ids in URLs.
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index c458b11b56..01d8fc4d6d 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -113,6 +113,7 @@ typedef struct _php_ps_globals { zval *http_session_vars; zend_bool auto_start; zend_bool use_cookies; + zend_bool use_only_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 */ } php_ps_globals; |