* @return void
*/
function cron() {
+
+ // run the keepalive client
$this->keepalive_client();
+
+ // admin/cron.php should have run srand for us
+ $random100 = rand(0,100);
+ if ($random100 < 10) { // Approximately 10% of the time.
+ // nuke olden sessions
+ $longtime = $timenow - (1 * 3600 * 24);
+ delete_records_select('mnet_session', "expires < $timenow");
+ }
}
/**
$mnetsessions = get_records_sql($sql);
- $ignore = delete_records('mnet_session', 'username', $username, 'useragent', $useragent, 'mnethostid', $USER->mnethostid);
+ $ignore = delete_records('mnet_session',
+ 'username', $username,
+ 'useragent', $useragent,
+ 'mnethostid', $USER->mnethostid);
if (false != $mnetsessions) {
$mnet_peer = new mnet_peer();
}
}
- $ignore = delete_records('mnet_session', 'useragent', $useragent, 'userid', $userid);
+ $ignore = delete_records('mnet_session',
+ 'useragent', $useragent,
+ 'userid', $userid);
if (isset($MNET_REMOTE_CLIENT) && isset($MNET_REMOTE_CLIENT->id)) {
$start = ob_start();