2 * Copyright (C) 2010 Tobias Brunner
3 * Hochschule fuer Technik Rapperswil
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>.
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
17 * @defgroup libhydra libhydra
19 * @defgroup attributes attributes
22 * @defgroup hplugins plugins
25 * @addtogroup libhydra
32 typedef struct hydra_t hydra_t
;
34 #include <attributes/attribute_manager.h>
39 * IKE Daemon support object.
43 * manager for payload attributes
45 attribute_manager_t
*attributes
;
49 * The single instance of hydra_t. Set between calls to libhydra_init() and
50 * libhydra_deinit() calls.
52 extern hydra_t
*hydra
;
55 * Initialize libhydra.
56 * @return FALSE if integrity check failed
61 * Deinitialize libhydra.
63 void libhydra_deinit();
65 #endif /** HYDRA_H_ @}*/