Imported start of brand new codebase for tinc 2.0.
[tinc] / fd / fd.h
1 /*
2     fd.h -- I/O and event multiplexing
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 __FD_H__
24 #define __FD_H__
25
26 enum fd_mode {
27         FD_MODE_READ = 0,
28         FD_MODE_WRITE,
29         FD_MODE_EXCEPT,
30         FD_MODES,
31 } fd_mode_t;
32
33 struct fd;
34
35 typedef bool (*fd_handler_t)(struct fd *);
36
37 typedef struct fd {
38         int fd;
39         enum fd_mode mode;
40         fd_handler_t handler;
41         void *data;
42 } fd_t;
43
44 extern bool fd_init(void);
45 extern bool fd_exit(void);
46 extern bool fd_add(struct fd *fd);
47 extern bool fd_del(struct fd *fd);
48 extern bool fd_run(void);
49 extern void fd_stop(void);
50
51 #endif