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
17 * @defgroup imc_scanner_state_t imc_scanner_state
18 * @{ @ingroup imc_scanner_state
21 #ifndef IMC_SCANNER_STATE_H_
22 #define IMC_SCANNER_STATE_H_
24 #include <imc/imc_state.h>
27 typedef struct imc_scanner_state_t imc_scanner_state_t
;
30 * Internal state of an imc_scanner_t connection instance
32 struct imc_scanner_state_t
{
35 * imc_state_t interface
37 imc_state_t interface
;
41 * Create an imc_scanner_state_t instance
43 * @param id connection ID
45 imc_state_t
* imc_scanner_state_create(TNC_ConnectionID id
);
47 #endif /** IMC_SCANNER_STATE_H_ @}*/