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_scanner_state.h"
19 typedef struct private_imc_scanner_state_t private_imc_scanner_state_t
;
22 * Private data of an imc_scanner_state_t object.
24 struct private_imc_scanner_state_t
{
27 * Public members of imc_scanner_state_t
29 imc_scanner_state_t
public;
34 TNC_ConnectionID connection_id
;
37 * TNCCS connection state
39 TNC_ConnectionState state
;
42 METHOD(imc_state_t
, get_connection_id
, TNC_ConnectionID
,
43 private_imc_scanner_state_t
*this)
45 return this->connection_id
;
48 METHOD(imc_state_t
, change_state
, void,
49 private_imc_scanner_state_t
*this, TNC_ConnectionState new_state
)
51 this->state
= new_state
;
54 METHOD(imc_state_t
, destroy
, void,
55 private_imc_scanner_state_t
*this)
61 * Described in header.
63 imc_state_t
*imc_scanner_state_create(TNC_ConnectionID connection_id
)
65 private_imc_scanner_state_t
*this;
70 .get_connection_id
= _get_connection_id
,
71 .change_state
= _change_state
,
75 .state
= TNC_CONNECTION_STATE_CREATE
,
76 .connection_id
= connection_id
,
79 return &this->public.interface
;