3 Copyright (C) 2002-2009 Guus Sliepen <guus@tinc-vpn.org>,
4 2002-2005 Ivo Timmermans
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this program; if not, write to the Free Software Foundation, Inc.,
18 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 avl_tree_t *event_tree;
33 static int event_compare(const event_t *a, const event_t *b) {
34 if(a->time > b->time) {
38 if(a->time < b->time) {
45 void init_events(void) {
46 event_tree = avl_alloc_tree((avl_compare_t) event_compare, (avl_action_t) free_event);
49 void exit_events(void) {
50 avl_delete_tree(event_tree);
53 void expire_events(void) {
59 * Make all events appear expired by subtracting the difference between
60 * the expiration time of the last event and the current time.
63 if(!event_tree->tail) {
67 event = event_tree->tail->data;
69 if(event->time <= now) {
73 diff = event->time - now;
75 for(node = event_tree->head; node; node = node->next) {
81 event_t *new_event(void) {
82 return xmalloc_and_zero(sizeof(event_t));
85 void free_event(event_t *event) {
89 void event_add(event_t *event) {
91 avl_insert(event_tree, event);
94 void event_del(event_t *event) {
95 avl_delete(event_tree, event);
98 event_t *get_expired_event(void) {
101 if(event_tree->head) {
102 event = event_tree->head->data;
104 if(event->time <= now) {
105 avl_node_t *node = event_tree->head;
106 avl_unlink_node(event_tree, node);
115 event_t *peek_next_event(void) {
116 if(event_tree->head) {
117 return event_tree->head->data;