Revision tags: php4, php-4.0.7RC3, POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS |
|
#
9002e37e |
| 21-Sep-2001 |
Sascha Schumann |
Always seed the LCG from the request-init hook, otherwise the seed would be shared among the threads which is quite pointless. Also use a function of the current time as one factor.
Always seed the LCG from the request-init hook, otherwise the seed would be shared among the threads which is quite pointless. Also use a function of the current time as one factor. Use gettimeofday() instead of time(), because it is faster on some operating systems.
show more ...
|
#
919e7e9f |
| 11-Sep-2001 |
Sascha Schumann |
revert last commit. Guys, discuss such things first, then commit. Mkay? |
#
e302d6a5 |
| 11-Sep-2001 |
Sterling Hughes |
Add an API function for setting the session id from a session module... # The SRM folks wanted/needed this |
#
78747bd2 |
| 09-Sep-2001 |
Derick Rethans |
- Don't wrap lines... this is annoying while coding. |
Revision tags: php-4.0.7RC2 |
|
#
f7e7b42d |
| 31-Aug-2001 |
Zeev Suraski |
Restore session_adapt_url() |
#
b080ddb8 |
| 31-Aug-2001 |
Zeev Suraski |
Cleanup and clarify |
#
642eab8b |
| 31-Aug-2001 |
Zeev Suraski |
define_sid updates |
#
b2b50ab5 |
| 31-Aug-2001 |
Zeev Suraski |
Fix trans_sid handler registration logic |
#
d7149ba8 |
| 27-Aug-2001 |
Zeev Suraski |
Cleanup |
#
b781720b |
| 27-Aug-2001 |
Zeev Suraski |
More fixes and refinements |
#
d697a558 |
| 26-Aug-2001 |
Zeev Suraski |
Fix my session updates. trans_sid handling will no longer slow down performance unless a session is actually in use. |
#
dc9769ea |
| 26-Aug-2001 |
Zeev Suraski |
Fix trans-sid. Still need to figure out how to turn trans-sid only when sessions are actually used. |
#
7b73aee4 |
| 26-Aug-2001 |
Zeev Suraski |
Make the session module more independent |
#
b8763a6f |
| 25-Aug-2001 |
Zeev Suraski |
Get rid of TRANS_SID - it's always possible to use it now. |
#
13ff1832 |
| 25-Aug-2001 |
Zeev Suraski |
Move the trans-sid mechanism to use the output buffering mechanism. Advantages: - Would work with the output buffering mechanism in general, and with output compression in particular
Move the trans-sid mechanism to use the output buffering mechanism. Advantages: - Would work with the output buffering mechanism in general, and with output compression in particular - Should yield better performance (untested as of yet)
show more ...
|
#
e140b35b |
| 21-Aug-2001 |
Zeev Suraski |
API update |
Revision tags: php-4.0.7RC1 |
|
#
4d11d908 |
| 13-Aug-2001 |
Rasmus Lerdorf |
Track down a few more functions that don't check for 0 args and use faster mechanism |
#
8c497f05 |
| 13-Aug-2001 |
Rasmus Lerdorf |
We don't consistently check for args passed to functions that don't take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performa
We don't consistently check for args passed to functions that don't take any args. In some cases we probably want to skip the check for performance reasons, but in other cases where performance is unlikely to be a factor, not throwing a warning on the wrong number of args passed to a function is at best inconsistent, and at worst it could hide a bug. So, add a few such checks. There are still lots of cases out there.
show more ...
|
Revision tags: BEFORE_EXP_MERGE |
|
#
3619c6eb |
| 11-Aug-2001 |
foobar |
Added $_SESSION to the $_* family. |
Revision tags: PRE_METHOD_DEREFERENCE_PATCH, BEFORE_PARAM_PARSING_CHANGE, PRE_ENGINE2_SPLIT |
|
#
23b9300f |
| 06-Aug-2001 |
Sascha Schumann |
more tsrm cleanup |
#
a19563c8 |
| 05-Aug-2001 |
Sascha Schumann |
more tsrm cleanup |
#
480ffb3d |
| 05-Aug-2001 |
Sascha Schumann |
more tsrm cleanup |
#
8aef1930 |
| 05-Aug-2001 |
Sascha Schumann |
more tsrm cleanup |
#
aafdfe82 |
| 05-Aug-2001 |
Sascha Schumann |
further tsrm cleanup |
#
1159c84a |
| 05-Aug-2001 |
Zeev Suraski |
- TSRMLS_FETCH work - whitespace fixes |