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
15 #include "imc_test_state.h"
19 typedef struct private_imc_test_state_t private_imc_test_state_t
;
22 * Private data of an imc_test_state_t object.
24 struct private_imc_test_state_t
{
27 * Public members of imc_test_state_t
29 imc_test_state_t
public;
34 TNC_ConnectionID connection_id
;
37 * TNCCS connection state
39 TNC_ConnectionState state
;
43 METHOD(imc_state_t
, get_connection_id
, TNC_ConnectionID
,
44 private_imc_test_state_t
*this)
46 return this->connection_id
;
49 METHOD(imc_state_t
, change_state
, void,
50 private_imc_test_state_t
*this, TNC_ConnectionState new_state
)
52 this->state
= new_state
;
55 METHOD(imc_state_t
, destroy
, void,
56 private_imc_test_state_t
*this)
62 * Described in header.
64 imc_state_t
*imc_test_state_create(TNC_ConnectionID connection_id
)
66 private_imc_test_state_t
*this;
71 .get_connection_id
= _get_connection_id
,
72 .change_state
= _change_state
,
76 .state
= TNC_CONNECTION_STATE_CREATE
,
77 .connection_id
= connection_id
,
80 return &this->public.interface
;