2 * Copyright (C) 2010 Andreas Steffen
3 * HSR 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 imv_manager imv_manager
21 #ifndef IMV_MANAGER_H_
22 #define IMV_MANAGER_H_
28 typedef struct imv_manager_t imv_manager_t
;
31 * The IMV manager controls all IMV instances.
33 struct imv_manager_t
{
38 * @param imv IMV instance
39 * @return TRUE if initialization successful
41 bool (*add
)(imv_manager_t
*this, imv_t
*imv
);
44 * Notify all IMV instances
46 * @param state communicate the state a connection has reached
48 void (*notify_connection_change
)(imv_manager_t
*this,
50 TNC_ConnectionState state
);
52 * Destroy an IMV manager and all its controlled instances.
54 void (*destroy
)(imv_manager_t
*this);
57 #endif /** IMV_MANAGER_H_ @}*/