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
17 * @defgroup imc_msg imc_msg
18 * @{ @ingroup libimcv_imc
24 #include <imc/imc_agent.h>
26 typedef struct imc_msg_t imc_msg_t
;
31 * Interface for a PA-TNC message handled by an IMC.
37 * Get source ID of PA-TNC message
41 TNC_UInt32 (*get_src_id
)(imc_msg_t
*this);
44 * Get destination ID of PA-TNC message
46 * @return destination ID
48 TNC_UInt32 (*get_dst_id
)(imc_msg_t
*this);
51 * Get the PA-TNC message type.
53 * @return message type
55 pen_type_t (*get_msg_type
)(imc_msg_t
*this);
58 * Sends one or multiple PA-TNC messages
60 * @param excl set the excl message flag if supported
61 * @return TNC result code
63 TNC_Result (*send
)(imc_msg_t
*this, bool excl
);
66 * Processes a received PA-TNC message
68 * @param fatal_error TRUE if IMV sent a fatal error message
69 * @return TNC result code
71 TNC_Result (*receive
)(imc_msg_t
*this, bool *fatal_error
);
74 * Add a PA-TNC attribute to the send queue
76 * @param attr PA-TNC attribute to be added
78 void (*add_attribute
)(imc_msg_t
*this, pa_tnc_attr_t
*attr
);
81 * Enumerator over PA-TNC attributes contained in the PA-TNC message
83 * @return PA-TNC attribute enumerator
85 enumerator_t
* (*create_attribute_enumerator
)(imc_msg_t
*this);
88 * Get the encoding of the IMC message.
90 * @return message encoding, internal data
92 chunk_t (*get_encoding
)(imc_msg_t
*this);
95 * Destroys a imc_msg_t object.
97 void (*destroy
)(imc_msg_t
*this);
101 * Create a wrapper for an outbound message
103 * @param agent IMC agent responsible for the message
104 * @param state IMC state for the given connection ID
105 * @param connection_id connection ID
106 * @param src_id source IMC ID
107 * @param dst_id destination IMV ID
108 * @param msg_type PA-TNC message type
110 imc_msg_t
* imc_msg_create(imc_agent_t
*agent
, imc_state_t
*state
,
111 TNC_ConnectionID connection_id
,
112 TNC_UInt32 src_id
, TNC_UInt32 dst_id
,
113 pen_type_t msg_type
);
116 * Create a wrapper for an outbound message based on a received message
118 * @param msg received message the reply is based on
120 imc_msg_t
* imc_msg_create_as_reply(imc_msg_t
*msg
);
123 * Create a wrapper around message data received via the legacy IF-IMC interface
125 * @param agent IMC agent responsible for the message
126 * @param state IMC state for the given connection ID
127 * @param connection_id connection ID
128 * @param msg_type PA-TNC message type
129 * @param msg received PA-TNC message blob
131 imc_msg_t
* imc_msg_create_from_data(imc_agent_t
*agent
, imc_state_t
*state
,
132 TNC_ConnectionID connection_id
,
133 TNC_MessageType msg_type
,
137 * Create a wrapper around message data received via the long IF-IMC interface
139 * @param agent IMC agent responsible for the message
140 * @param state IMC state for the given connection ID
141 * @param connection_id connection ID
142 * @param src_id source IMV ID
143 * @param dst_id destination IMC ID
144 * @param msg_vid PA-TNC message vendor ID
145 * @param msg_subtype PA-TNC subtype
146 * @param msg received PA-TNC message blob
148 imc_msg_t
* imc_msg_create_from_long_data(imc_agent_t
*agent
, imc_state_t
*state
,
149 TNC_ConnectionID connection_id
,
150 TNC_UInt32 src_id
, TNC_UInt32 dst_id
,
151 TNC_VendorID msg_vid
,
152 TNC_MessageSubtype msg_subtype
,
155 #endif /** IMC_MSG_H_ @}*/