]> git.ipfire.org Git - thirdparty/strongswan.git/blob - src/libcharon/kernel/kernel_handler.h
libhydra: Move kernel interface to libcharon
[thirdparty/strongswan.git] / src / libcharon / kernel / kernel_handler.h
1 /*
2 * Copyright (C) 2010 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 *
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
13 * for more details.
14 */
15
16 /**
17 * @defgroup kernel_handler kernel_handler
18 * @{ @ingroup kernel
19 */
20
21 #ifndef KERNEL_HANDLER_H_
22 #define KERNEL_HANDLER_H_
23
24 typedef struct kernel_handler_t kernel_handler_t;
25
26 #include <kernel/kernel_listener.h>
27
28 /**
29 * Listens to and handles kernel events.
30 */
31 struct kernel_handler_t {
32
33 /**
34 * Implements the kernel listener interface.
35 */
36 kernel_listener_t listener;
37
38 /**
39 * Destroy this instance.
40 */
41 void (*destroy)(kernel_handler_t *this);
42
43 };
44
45 /**
46 * Create an object of type kernel_handler_t.
47 */
48 kernel_handler_t *kernel_handler_create();
49
50 #endif /** KERNEL_HANDLER_H_ @}*/