2 * Copyright (C) 2011-2014 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 imc_state_t imc_state
19 * @{ @ingroup libimcv_imc
25 #include "seg/seg_contract_manager.h"
33 typedef struct imc_state_t imc_state_t
;
36 * Internal state of an IMC connection instance
41 * Get the TNCS connection ID attached to the state
43 * @return TNCS connection ID of the state
45 TNC_ConnectionID (*get_connection_id
)(imc_state_t
*this);
48 * Checks if long message types are supported for this TNCCS connection
50 * @return TRUE if set, FALSE otherwise
52 bool (*has_long
)(imc_state_t
*this);
55 * Checks if the exclusive delivery is supported for this TNCCS connection
57 * @return TRUE if set, FALSE otherwise
59 bool (*has_excl
)(imc_state_t
*this);
62 * Sets the long message types and exclusive flags for this TNCCS connection
64 * @param has_long TNCCS connection supports long message types
65 * @param has_excl TNCCS connection supports exclusive delivery
66 * @return TRUE if set, FALSE otherwise
68 void (*set_flags
)(imc_state_t
*this, bool has_long
, bool has_excl
);
71 * Set the maximum size of a PA-TNC message for this TNCCS connection
73 * @param max_msg_len maximum size of a PA-TNC message
75 void (*set_max_msg_len
)(imc_state_t
*this, u_int32_t max_msg_len
);
78 * Get the maximum size of a PA-TNC message for this TNCCS connection
80 * @return maximum size of a PA-TNC message
82 u_int32_t (*get_max_msg_len
)(imc_state_t
*this);
85 * Get attribute segmentation contracts associated with TNCCS Connection
87 * @return contracts associated with TNCCS Connection
89 seg_contract_manager_t
* (*get_contracts
)(imc_state_t
*this);
92 * Change the connection state
94 * @param new_state new connection state
96 void (*change_state
)(imc_state_t
*this, TNC_ConnectionState new_state
);
99 * Set the Assessment/Evaluation Result
102 * @param result Assessment/Evaluation Result
104 void (*set_result
)(imc_state_t
*this, TNC_IMCID id
,
105 TNC_IMV_Evaluation_Result result
);
108 * Get the Assessment/Evaluation Result
111 * @param result Assessment/Evaluation Result
112 * @return TRUE if result is known
114 bool (*get_result
)(imc_state_t
*this, TNC_IMCID id
,
115 TNC_IMV_Evaluation_Result
*result
);
118 * Destroys an imc_state_t object
120 void (*destroy
)(imc_state_t
*this);
123 #endif /** IMC_STATE_H_ @}*/