You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
/**
|
|
* \file
|
|
*
|
|
* \author Georg Hopp
|
|
*
|
|
* \copyright
|
|
* Copyright © 2012 Georg Hopp
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#define _GNU_SOURCE
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "trdata.h"
|
|
|
|
#include "session.h"
|
|
#include "application/application.h"
|
|
|
|
static
|
|
inline
|
|
int
|
|
sessionIpIndexComp(const void * a, const void * b)
|
|
{
|
|
Session sess_a = (Session)a;
|
|
Session sess_b = (Session)b;
|
|
|
|
if (sess_a->ip < sess_b->ip) {
|
|
return -1;
|
|
}
|
|
|
|
if (sess_a->ip > sess_b->ip) {
|
|
return 1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
applicationSessionStop(Application this, Session session)
|
|
{
|
|
int index = SESSION_LIVETIME -
|
|
(session->livetime - this->session_time_ofs);
|
|
|
|
if (SESSION_LIVETIME > index) {
|
|
TR_hashDeleteByVal(
|
|
(this->active_sessions)[index].sessions,
|
|
session->hash);
|
|
TR_treeDelete(
|
|
&((this->active_sessions)[index].ip_index),
|
|
session, sessionIpIndexComp);
|
|
}
|
|
}
|
|
|
|
// vim: set ts=4 sw=4:
|