Use Ed25519 keys.
[oweals/tinc.git] / src / event.h
1 /*
2     event.h -- I/O, timeout and signal event handling
3     Copyright (C) 2012-2013 Guus Sliepen <guus@tinc-vpn.org>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License along
16     with this program; if not, write to the Free Software Foundation, Inc.,
17     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef __TINC_EVENT_H__
21 #define __TINC_EVENT_H__
22
23 #include "splay_tree.h"
24
25 #define IO_READ 1
26 #define IO_WRITE 2
27
28 typedef void (*io_cb_t)(void *data, int flags);
29 typedef void (*timeout_cb_t)(void *data);
30 typedef void (*signal_cb_t)(void *data);
31
32 typedef struct io_t {
33         int fd;
34         int flags;
35         io_cb_t cb;
36         void *data;
37         splay_node_t node;
38 } io_t;
39
40 typedef struct timeout_t {
41         struct timeval tv;
42         timeout_cb_t cb;
43         void *data;
44         splay_node_t node;
45 } timeout_t;
46
47 typedef struct signal_t {
48         int signum;
49         signal_cb_t cb;
50         void *data;
51         splay_node_t node;
52 } signal_t;
53
54 extern struct timeval now;
55
56 extern void io_add(io_t *io, io_cb_t cb, void *data, int fd, int flags);
57 extern void io_del(io_t *io);
58 extern void io_set(io_t *io, int flags);
59
60 extern void timeout_add(timeout_t *timeout, timeout_cb_t cb, void *data, struct timeval *tv);
61 extern void timeout_del(timeout_t *timeout);
62 extern void timeout_set(timeout_t *timeout, struct timeval *tv);
63
64 extern void signal_add(signal_t *sig, signal_cb_t cb, void *data, int signum);
65 extern void signal_del(signal_t *sig);
66
67 extern bool event_loop(void);
68 extern void event_flush_output(void);
69 extern void event_exit(void);
70
71 #endif