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
16 #include "imc_attestation_state.h"
20 typedef struct private_imc_attestation_state_t private_imc_attestation_state_t
;
23 * Private data of an imc_attestation_state_t object.
25 struct private_imc_attestation_state_t
{
28 * Public members of imc_attestation_state_t
30 imc_attestation_state_t
public;
35 TNC_ConnectionID connection_id
;
38 * TNCCS connection state
40 TNC_ConnectionState state
;
44 METHOD(imc_state_t
, get_connection_id
, TNC_ConnectionID
,
45 private_imc_attestation_state_t
*this)
47 return this->connection_id
;
50 METHOD(imc_state_t
, change_state
, void,
51 private_imc_attestation_state_t
*this, TNC_ConnectionState new_state
)
53 this->state
= new_state
;
56 METHOD(imc_state_t
, destroy
, void,
57 private_imc_attestation_state_t
*this)
63 * Described in header.
65 imc_state_t
*imc_attestation_state_create(TNC_ConnectionID connection_id
)
67 private_imc_attestation_state_t
*this;
72 .get_connection_id
= _get_connection_id
,
73 .change_state
= _change_state
,
77 .state
= TNC_CONNECTION_STATE_CREATE
,
78 .connection_id
= connection_id
,
81 return &this->public.interface
;