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 imc_attestation_state_t imc_attestation_state
19 * @{ @ingroup imc_attestation_state
22 #ifndef IMC_ATTESTATION_STATE_H_
23 #define IMC_ATTESTATION_STATE_H_
25 #include <imc/imc_state.h>
26 #include <tcg/pts/pts.h>
29 typedef struct imc_attestation_state_t imc_attestation_state_t
;
32 * Internal state of an imc_attestation_t connection instance
34 struct imc_attestation_state_t
{
37 * imc_state_t interface
39 imc_state_t interface
;
46 pts_t
* (*get_pts
)(imc_attestation_state_t
*this);
51 * Create an imc_attestation_state_t instance
53 * @param id connection ID
55 imc_state_t
* imc_attestation_state_create(TNC_ConnectionID id
);
57 #endif /** IMC_ATTESTATION_STATE_H_ @}*/