summaryrefslogtreecommitdiff
path: root/ext/session
Commit message (Collapse)AuthorAgeFilesLines
...
* should fix warnings under winblows.Sterling Hughes2001-05-301-2/+2
|
* * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build)Stig Bakken2001-05-241-0/+4
|
* fix buggy debug statementsSascha Schumann2001-05-241-3/+3
|
* Due to dynamic registration of storage handlers, OnUpdateSaveHandlerSascha Schumann2001-05-231-3/+12
| | | | | | | might be called before that registration takes place and hence the INI update is dismissed. In that case, we defer the lookup to the first request init.
* - Nuke GINITAndi Gutmans2001-05-231-5/+4
|
* @- Made $HTTP_SESSION_VARS['foo'] and $foo be references to the same valueAndrei Zmievski2001-05-221-2/+2
| | | | | @ when register_globals is on. (Andrei)
* Add support for systems where p{read|write} take a off64_t withoutSascha Schumann2001-05-201-0/+2
| | | | | being properly prototyped.
* Use zend_hash_add_empty_elementSascha Schumann2001-05-191-1/+1
|
* Improve reading from external data source for session id creation.Sascha Schumann2001-05-191-11/+19
| | | | | Improve generating the string representation of the md5 session id.
* Nuke some warnings.Sascha Schumann2001-05-132-5/+5
|
* Nuke more quotesSascha Schumann2001-05-121-1/+1
|
* Replace ssize_t with long, as Win32 lacks proper support for that type.Sascha Schumann2001-05-121-2/+2
|
* Save a couple of syscalls per sessionSascha Schumann2001-05-112-18/+34
| | | | | | | Fix apparent new-session-files-were-not-locked bug Replace %m with portable "%s", strerror(errno)
* add an interface for registering storage modules at run-time.Sascha Schumann2001-05-034-19/+30
|
* Patch from Sascha that abstracts session serializers. WDDX extensionAndrei Zmievski2001-05-012-129/+85
| | | | | | now implements the encode/decode functions and registers them with the session module.
* - Change macros from V_ to VCWD_ because of AIX name clashAndi Gutmans2001-04-302-8/+8
|
* - use get_current_key_ex() in order to receive key length and not havingAndi Gutmans2001-04-261-29/+24
| | | | | - to use strlen() everywhere.
* compile was broken, new argument?Shane Caraveo2001-04-261-1/+1
|
* Renamed the AC_ prefixed macros defined in acinclude.m4 to PHP_* prefixes.foobar2001-03-271-2/+2
| | | | | # Heads up people! I tested this before committing but you never know..
* buf is gone. Don't reference it.Sascha Schumann2001-03-131-1/+1
|
* Replace another sprintfSascha Schumann2001-03-131-3/+5
|
* Nuke calls to sprintf, snprintf, strcat, strcpy and rely onSascha Schumann2001-03-132-62/+72
| | | | | memcpy and smart_strs.
* - Pointed out by Andrei. zval_ptr_dtor() should be used instead of theAndi Gutmans2001-02-271-1/+1
| | | | | zval_del_ref() function which should be nuked.
* - Fix copyright notices with 2001Andi Gutmans2001-02-265-5/+5
|
* Use MAKE_STD_ZVAL/FREE_ZVAL to handle zval memory allocation.Sascha Schumann2001-01-071-4/+4
|
* Add a new test and refine the fourth testSascha Schumann2001-01-072-2/+158
|
* Use zval_ptr_dtor instead of zval_dtor/FREE_ZVAL pair.Sascha Schumann2001-01-072-10/+5
| | | | | Submitted by: Andi Gutmans
* Add session_set_save_handler testSascha Schumann2000-12-241-0/+85
|
* More instances of s/efree/FREE_ZVAL/Sascha Schumann2000-12-242-3/+3
|
* Not freeing the zval using FREE_ZVAL caused a segfault inSascha Schumann2000-12-241-2/+2
| | | | | shutdown_memory_manager.
* Also call some member functions of the deserialized objectsSascha Schumann2000-12-241-3/+6
|
* Add session object deserialization testSascha Schumann2000-12-241-0/+33
|
* Add two regression tests for the session moduleSascha Schumann2000-12-242-0/+37
|
* (PHP session_unset) Return early, if no session was started.Sascha Schumann2000-12-221-0/+3
| | | | | PR: #8354
* Heads up people!Zeev Suraski2000-12-221-10/+4
| | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok...
* No need for GCC extensions in non-debugging mode.Sascha Schumann2000-12-211-1/+1
| | | | | PR: #8345
* Whitespace fix and initialize ret properlySascha Schumann2000-11-221-9/+9
|
* Move "replace value" logic to ZendStanislav Malyshev2000-11-201-13/+3
|
* 2nd step towards auto-creditsHartmut Holzgraefe2000-11-201-0/+2
|
* Fix #3261 - variables declared as "global" in function do not get the rightStanislav Malyshev2000-11-191-5/+26
| | | | | value after session_start.
* Add some additional checksSascha Schumann2000-11-031-4/+17
| | | | | Submitted by: mookid@sigent.ru (Mikhail Zabaluev)
* Fix implementation of hash algorithmSascha Schumann2000-11-031-1/+1
|
* Const'ify part of sapi_request_info.Sascha Schumann2000-11-021-1/+1
| | | | | | query_string, post_data, path_translated, request_uri, auth_user, auth_password and argv0 are modified, so they cannot become const.
* Add support for serializing references.Stanislav Malyshev2000-10-301-4/+20
| | | | | | @- Add support for serializing references (Stas) # WDDX and shared memory functions not covered yet
* Initial steps to move the INI mechanism to the Zend engineZeev Suraski2000-10-291-7/+7
|
* Allow to send secure cookiesStanislav Malyshev2000-10-282-4/+20
|
* Add session_adapt_url().Sascha Schumann2000-10-262-7/+14
|
* session_unset() now cleans up $HTTP_SESSION_VARS as well.Andrei Zmievski2000-10-261-0/+3
|
* Fixed a bug in session.c. If the user calls session_module_name with aAlexander Feldman2000-10-231-7/+11
| | | | | | | parameter, then the mod_data pointer is initialized to NULL and then php_session_save_current_state did not check this value before referencing the pointer. Added a check in php_session_save_current_state.
* Fixed crash (bus error) in readdir() and session cleanup when compiledfoobar2000-10-181-1/+1
| | | | | with Sun CC.