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
17 * @defgroup imv_state_t imv_state
18 * @{ @ingroup imv_state
24 #include <tnc/tncifimv.h>
27 typedef struct imv_state_t imv_state_t
;
30 * Internal state of an IMV connection instance
35 * Get the TNCS connection ID attached to the state
37 * @return TNCS connection ID of the state
39 TNC_ConnectionID (*get_connection_id
)(imv_state_t
*this);
42 * Change the connection state
44 * @param new_state new connection state
46 void (*change_state
)(imv_state_t
*this, TNC_ConnectionState new_state
);
49 * Get IMV action recommendation and evaluation result
51 * @param rec IMV action recommendation
52 * @param eval IMV evaluation result
55 void (*get_recommendation
)(imv_state_t
*this,
56 TNC_IMV_Action_Recommendation
*rec
,
57 TNC_IMV_Evaluation_Result
*eval
);
60 * Set IMV action recommendation and evaluation result
62 * @param rec IMV action recommendation
63 * @param eval IMV evaluation result
66 void (*set_recommendation
)(imv_state_t
*this,
67 TNC_IMV_Action_Recommendation rec
,
68 TNC_IMV_Evaluation_Result eval
);
71 * Destroys an imv_state_t object
73 void (*destroy
)(imv_state_t
*this);
76 #endif /** IMV_STATE_H_ @}*/