summaryrefslogtreecommitdiff
path: root/ext/session/php_session.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2003-01-16 07:21:49 +0000
committerSascha Schumann <sas@php.net>2003-01-16 07:21:49 +0000
commitdb8b4c67629334da8daad5ce28d51f8f644ef113 (patch)
tree2a46ff4125183a9006da1480ced0c4cb8907e091 /ext/session/php_session.h
parent4e53357e9bab7ac8a22218f283213f8a4bec7fbf (diff)
downloadphp-git-db8b4c67629334da8daad5ce28d51f8f644ef113.tar.gz
Add INI setting session.hash_bits_per_character which enables developers
to choose how session ids are represented, regardless of the hash algorithm.
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r--ext/session/php_session.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h
index 47ee858201..05a74c4ed0 100644
--- a/ext/session/php_session.h
+++ b/ext/session/php_session.h
@@ -120,6 +120,7 @@ typedef struct _php_ps_globals {
zend_bool apply_trans_sid; /* whether or not to enable trans-sid for the current request */
long hash_func;
+ long hash_bits_per_character;
} php_ps_globals;
typedef php_ps_globals zend_ps_globals;