2 * Copyright (C) 2011 Sansar Choinyambuu
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
18 * @defgroup imv_attestation_state_t imv_attestation_state
19 * @{ @ingroup imv_attestation_state
22 #ifndef IMV_ATTESTATION_STATE_H_
23 #define IMV_ATTESTATION_STATE_H_
25 #include <imv/imv_state.h>
28 typedef struct imv_attestation_state_t imv_attestation_state_t
;
31 * Internal state of an imv_attestation_t connection instance
33 struct imv_attestation_state_t
{
36 * imv_state_t interface
38 imv_state_t interface
;
41 * Add any setters and getters here
46 * Create an imv_attestation_state_t instance
48 * @param id connection ID
50 imv_state_t
* imv_attestation_state_create(TNC_ConnectionID id
);
52 #endif /** IMV_ATTESTATION_STATE_H_ @}*/