2 * Copyright (C) 2011 Andreas Steffen, HSR Hochschule fuer Technik Rapperswil
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * @defgroup libimcv libimcv
18 * @defgroup generic_attr generic_attr
21 * @defgroup libimcv_imc imc
24 * @defgroup libimcv_imv imv
27 * @defgroup pa_tnc pa_tnc
30 * @defgroup libimcv_plugins plugins
33 * @defgroup libimcv_seg seg
36 * @defgroup libimcv_swid swid
46 #include "pa_tnc/pa_tnc_attr_manager.h"
47 #include "imv/imv_database.h"
48 #include "imv/imv_session_manager.h"
49 #include "pts/components/pts_component_manager.h"
56 * @param is_imv TRUE if called by IMV, FALSE if by IMC
57 * @return FALSE if initialization failed
59 bool libimcv_init(bool is_imv
);
62 * Deinitialize libimcv.
64 void libimcv_deinit(void);
67 * PA-TNC attribute manager
69 extern pa_tnc_attr_manager_t
* imcv_pa_tnc_attributes
;
72 * Global IMV database object
74 extern imv_database_t
* imcv_db
;
77 * Global IMV session manager
79 extern imv_session_manager_t
* imcv_sessions
;
82 * PTS Functional Component manager
84 extern pts_component_manager_t
* imcv_pts_components
;
86 #endif /** IMCV_H_ @}*/