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
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 * Sends one or multiple PA-TNC messages
53 * @param excl set the excl message flag if supported
54 * @return TNC result code
56 TNC_Result (*send
)(imc_msg_t
*this, bool excl
);
59 * Processes a received PA-TNC message
61 * @param fatal_error TRUE if IMV sent a fatal error message
62 * @return TNC result code
64 TNC_Result (*receive
)(imc_msg_t
*this, bool *fatal_error
);
67 * Add a PA-TNC attribute to the send queue
69 * @param attr PA-TNC attribute to be added
71 void (*add_attribute
)(imc_msg_t
*this, pa_tnc_attr_t
*attr
);
74 * Enumerator over PA-TNC attributes contained in the PA-TNC message
76 * @return PA-TNC attribute enumerator
78 enumerator_t
* (*create_attribute_enumerator
)(imc_msg_t
*this);
81 * Destroys a imc_msg_t object.
83 void (*destroy
)(imc_msg_t
*this);
87 * Create a wrapper for an outbound message
89 * @param agent IMC agent responsible for the message
90 * @param state IMC state for the given connection ID
91 * @param connection_id connection ID
92 * @param src_id source IMC ID
93 * @param dst_id destination IMV ID
94 * @param msg_type PA-TNC message type
96 imc_msg_t
* imc_msg_create(imc_agent_t
*agent
, imc_state_t
*state
,
97 TNC_ConnectionID connection_id
,
98 TNC_UInt32 src_id
, TNC_UInt32 dst_id
,
102 * Create a wrapper for an outbound message based on a received message
104 * @param msg received message the reply is based on
106 imc_msg_t
* imc_msg_create_as_reply(imc_msg_t
*msg
);
109 * Create a wrapper around message data received via the legacy IF-IMC interface
111 * @param agent IMC agent responsible for the message
112 * @param state IMC state for the given connection ID
113 * @param connection_id connection ID
114 * @param msg_type PA-TNC message type
115 * @param msg received PA-TNC message blob
117 imc_msg_t
* imc_msg_create_from_data(imc_agent_t
*agent
, imc_state_t
*state
,
118 TNC_ConnectionID connection_id
,
119 TNC_MessageType msg_type
,
123 * Create a wrapper around message data received via the long 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 src_id source IMV ID
129 * @param dst_id destination IMC ID
130 * @param msg_flags PA-TNC message flags
131 * @param msg_vid PA-TNC message vendor ID
132 * @param msg_subtype PA-TNC subtype
133 * @param msg received PA-TNC message blob
135 imc_msg_t
* imc_msg_create_from_long_data(imc_agent_t
*agent
, imc_state_t
*state
,
136 TNC_ConnectionID connection_id
,
137 TNC_UInt32 src_id
, TNC_UInt32 dst_id
,
138 TNC_VendorID msg_vid
,
139 TNC_MessageSubtype msg_subtype
,
142 #endif /** IMC_MSG_H_ @}*/