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
;
42 * Command to transmit to IMV
47 * Is it the first handshake?
52 * Do a handshake retry
57 METHOD(imc_state_t
, get_connection_id
, TNC_ConnectionID
,
58 private_imc_test_state_t
*this)
60 return this->connection_id
;
63 METHOD(imc_state_t
, change_state
, void,
64 private_imc_test_state_t
*this, TNC_ConnectionState new_state
)
66 this->state
= new_state
;
69 METHOD(imc_state_t
, destroy
, void,
70 private_imc_test_state_t
*this)
76 METHOD(imc_test_state_t
, get_command
, char*,
77 private_imc_test_state_t
*this)
82 METHOD(imc_test_state_t
, set_command
, void,
83 private_imc_test_state_t
*this, char* command
)
87 old_command
= this->command
;
88 this->command
= strdup(command
);
92 METHOD(imc_test_state_t
, is_first_handshake
, bool,
93 private_imc_test_state_t
*this)
97 /* test and reset first_handshake flag */
98 first
= this->first_handshake
;
99 this->first_handshake
= FALSE
;
103 METHOD(imc_test_state_t
, do_handshake_retry
, bool,
104 private_imc_test_state_t
*this)
108 /* test and reset handshake_retry flag */
109 retry
= this->handshake_retry
;
110 this->handshake_retry
= FALSE
;
115 * Described in header.
117 imc_state_t
*imc_test_state_create(TNC_ConnectionID connection_id
,
118 char *command
, bool retry
)
120 private_imc_test_state_t
*this;
125 .get_connection_id
= _get_connection_id
,
126 .change_state
= _change_state
,
129 .get_command
= _get_command
,
130 .set_command
= _set_command
,
131 .is_first_handshake
= _is_first_handshake
,
132 .do_handshake_retry
= _do_handshake_retry
,
134 .state
= TNC_CONNECTION_STATE_CREATE
,
135 .connection_id
= connection_id
,
136 .command
= strdup(command
),
137 .first_handshake
= TRUE
,
138 .handshake_retry
= retry
,
141 return &this->public.interface
;