summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Dowad <alexinbeijing@gmail.com>2020-04-27 10:26:51 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-04-27 14:51:33 +0200
commitaf67b06995619ecadce4180fbeb49e851c8ec999 (patch)
tree033fae82d912f01fd9046e82d567141cf4dca706
parenta447897db08ebed361a7d18c8ea0d10089040460 (diff)
downloadphp-git-af67b06995619ecadce4180fbeb49e851c8ec999.tar.gz
SessionUpdateTimestampHandler class was never implemented
It seems that in 2015, work was being done so that users could add their own custom session handlers. The implementer intended to add a class called SessionUpdateTimestampHandler, but never did so. The variable which was intended to point to its class entry is never initialized. The implementer also coded two methods for this class. Strangely, the method bodies are declared with PHP_METHOD(SessionHandler, ...) rather than PHP(SessionUpdateTimestampHandler, ...). However, these method implementations are not added to the method table of any class or interface. They are just dead code.
-rw-r--r--ext/session/mod_user_class.c34
-rw-r--r--ext/session/php_session.h2
-rw-r--r--ext/session/session.c3
3 files changed, 0 insertions, 39 deletions
diff --git a/ext/session/mod_user_class.c b/ext/session/mod_user_class.c
index 1415b407a5..f1a9091251 100644
--- a/ext/session/mod_user_class.c
+++ b/ext/session/mod_user_class.c
@@ -176,37 +176,3 @@ PHP_METHOD(SessionHandler, create_sid)
RETURN_STR(id);
}
/* }}} */
-
-/* {{{ proto char SessionUpdateTimestampHandler::validateId(string id)
- Simply return TRUE */
-PHP_METHOD(SessionHandler, validateId)
-{
- zend_string *key;
-
- PS_SANITY_CHECK_IS_OPEN;
-
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "S", &key) == FAILURE) {
- RETURN_THROWS();
- }
-
- /* Legacy save handler may not support validate_sid API. Return TRUE. */
- RETURN_TRUE;
-}
-/* }}} */
-
-/* {{{ proto bool SessionUpdateTimestampHandler::updateTimestamp(string id, string data)
- Simply call update_timestamp */
-PHP_METHOD(SessionHandler, updateTimestamp)
-{
- zend_string *key, *val;
-
- PS_SANITY_CHECK_IS_OPEN;
-
- if (zend_parse_parameters(ZEND_NUM_ARGS(), "SS", &key, &val) == FAILURE) {
- RETURN_THROWS();
- }
-
- /* Legacy save handler may not support update_timestamp API. Just write. */
- RETVAL_BOOL(SUCCESS == PS(default_mod)->s_write(&PS(mod_data), key, val, PS(gc_maxlifetime)));
-}
-/* }}} */
diff --git a/ext/session/php_session.h b/ext/session/php_session.h
index 34987992ea..6f96644024 100644
--- a/ext/session/php_session.h
+++ b/ext/session/php_session.h
@@ -325,7 +325,5 @@ extern PHP_METHOD(SessionHandler, write);
extern PHP_METHOD(SessionHandler, destroy);
extern PHP_METHOD(SessionHandler, gc);
extern PHP_METHOD(SessionHandler, create_sid);
-extern PHP_METHOD(SessionHandler, validateId);
-extern PHP_METHOD(SessionHandler, updateTimestamp);
#endif
diff --git a/ext/session/session.c b/ext/session/session.c
index 60157b3356..8b97bb62ad 100644
--- a/ext/session/session.c
+++ b/ext/session/session.c
@@ -70,9 +70,6 @@ zend_class_entry *php_session_iface_entry;
/* SessionIdInterface */
zend_class_entry *php_session_id_iface_entry;
-/* SessionUpdateTimestampHandler class */
-zend_class_entry *php_session_update_timestamp_class_entry;
-
/* SessionUpdateTimestampInterface */
zend_class_entry *php_session_update_timestamp_iface_entry;