Imported start of brand new codebase for tinc 2.0.
[tinc] / fd / event.h
1 /*
2     event.h -- event queue
3
4     Copyright (C) 2003-2004 Guus Sliepen <guus@tinc-vpn.org>,
5
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.
10
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.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20     $Id$
21 */
22
23 #ifndef __EVENT_H__
24 #define __EVENT_H__
25
26 typedef int event_id_t;
27
28 struct event;
29
30 typedef bool (*event_handler_t)(struct event *event);
31
32 typedef struct event {
33         struct timeval tv;
34         struct timeval interval;
35         event_id_t id;
36         event_handler_t handler;
37         void *data;
38 } event_t;
39
40 extern bool event_init(void);
41 extern bool event_exit(void);
42 extern bool event_add(struct event *event);
43 extern bool event_del(struct event *event);
44 extern struct event *event_new(void);
45 extern void event_free(struct event *);
46 extern void event_set(struct event *, struct timeval, event_handler_t, void *);
47 extern void event_update(struct event *, struct timeval);
48 extern void event_handle(void);
49 extern struct timeval event_timeout(void);
50
51 #endif /* __EVENT_H__ */