2 * Copyright (C) 2012 Andreas Steffen
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
18 * @defgroup imv_os_state_t imv_os_state
19 * @{ @ingroup imv_os_state
22 #ifndef IMV_OS_STATE_H_
23 #define IMV_OS_STATE_H_
25 #include <imv/imv_state.h>
28 typedef struct imv_os_state_t imv_os_state_t
;
31 * Internal state of an imv_os_t connection instance
33 struct imv_os_state_t
{
36 * imv_state_t interface
38 imv_state_t interface
;
41 * Set OS Product Information
44 * @param version OS version
46 void (*set_info
)(imv_os_state_t
*this, chunk_t name
, chunk_t version
);
49 * Get OS Product Information
51 * @result OS name & version
53 char* (*get_info
)(imv_os_state_t
*this);
58 * Create an imv_os_state_t instance
60 * @param id connection ID
62 imv_state_t
* imv_os_state_create(TNC_ConnectionID id
);
64 #endif /** IMV_OS_STATE_H_ @}*/