added TNC_TNCC_SendMessageLong() and TNC_TNCS_SendMessageLong() functions
This commit is contained in:
@@ -82,14 +82,42 @@ TNC_Result TNC_TNCC_SendMessage(TNC_IMCID imc_id,
|
|||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_len,
|
||||||
TNC_MessageType msg_type)
|
TNC_MessageType msg_type)
|
||||||
{
|
{
|
||||||
|
TNC_VendorID msg_vid;
|
||||||
|
TNC_MessageSubtype msg_subtype;
|
||||||
|
|
||||||
if (!tnc->imcs->is_registered(tnc->imcs, imc_id))
|
if (!tnc->imcs->is_registered(tnc->imcs, imc_id))
|
||||||
{
|
{
|
||||||
DBG1(DBG_TNC, "ignoring SendMessage() from unregistered IMC %u",
|
DBG1(DBG_TNC, "ignoring SendMessage() from unregistered IMC %u",
|
||||||
imc_id);
|
imc_id);
|
||||||
return TNC_RESULT_INVALID_PARAMETER;
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
msg_vid = (msg_type >> 8) & TNC_VENDORID_ANY;
|
||||||
|
msg_subtype = msg_type & TNC_SUBTYPE_ANY;
|
||||||
|
|
||||||
return tnc->tnccs->send_message(tnc->tnccs, imc_id, TNC_IMVID_ANY,
|
return tnc->tnccs->send_message(tnc->tnccs, imc_id, TNC_IMVID_ANY,
|
||||||
connection_id, msg, msg_len, msg_type);
|
connection_id, 0, msg, msg_len, msg_vid, msg_subtype);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called by the IMC when an IMC-IMV message is to be sent over IF-TNCCS 2.0
|
||||||
|
*/
|
||||||
|
TNC_Result TNC_TNCC_SendMessageLong(TNC_IMCID imc_id,
|
||||||
|
TNC_ConnectionID connection_id,
|
||||||
|
TNC_UInt32 msg_flags,
|
||||||
|
TNC_BufferReference msg,
|
||||||
|
TNC_UInt32 msg_len,
|
||||||
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype,
|
||||||
|
TNC_UInt32 imv_id)
|
||||||
|
{
|
||||||
|
if (!tnc->imcs->is_registered(tnc->imcs, imc_id))
|
||||||
|
{
|
||||||
|
DBG1(DBG_TNC, "ignoring SendMessage() from unregistered IMC %u",
|
||||||
|
imc_id);
|
||||||
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
|
}
|
||||||
|
return tnc->tnccs->send_message(tnc->tnccs, imc_id, imv_id, connection_id,
|
||||||
|
msg_flags, msg, msg_len, msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -115,6 +143,10 @@ TNC_Result TNC_TNCC_BindFunction(TNC_IMCID id,
|
|||||||
{
|
{
|
||||||
*function_pointer = (void*)TNC_TNCC_SendMessage;
|
*function_pointer = (void*)TNC_TNCC_SendMessage;
|
||||||
}
|
}
|
||||||
|
else if (streq(function_name, "TNC_TNCC_SendMessageLong"))
|
||||||
|
{
|
||||||
|
*function_pointer = (void*)TNC_TNCC_SendMessageLong;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
return TNC_RESULT_INVALID_PARAMETER;
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
|
|||||||
@@ -82,14 +82,42 @@ TNC_Result TNC_TNCS_SendMessage(TNC_IMVID imv_id,
|
|||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_len,
|
||||||
TNC_MessageType msg_type)
|
TNC_MessageType msg_type)
|
||||||
{
|
{
|
||||||
|
TNC_VendorID msg_vid;
|
||||||
|
TNC_MessageSubtype msg_subtype;
|
||||||
|
|
||||||
if (!tnc->imvs->is_registered(tnc->imvs, imv_id))
|
if (!tnc->imvs->is_registered(tnc->imvs, imv_id))
|
||||||
{
|
{
|
||||||
DBG1(DBG_TNC, "ignoring SendMessage() from unregistered IMV %u",
|
DBG1(DBG_TNC, "ignoring SendMessage() from unregistered IMV %u",
|
||||||
imv_id);
|
imv_id);
|
||||||
return TNC_RESULT_INVALID_PARAMETER;
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
msg_vid = (msg_type >> 8) & TNC_VENDORID_ANY;
|
||||||
|
msg_subtype = msg_type & TNC_SUBTYPE_ANY;
|
||||||
|
|
||||||
return tnc->tnccs->send_message(tnc->tnccs, TNC_IMCID_ANY, imv_id,
|
return tnc->tnccs->send_message(tnc->tnccs, TNC_IMCID_ANY, imv_id,
|
||||||
connection_id, msg, msg_len, msg_type);
|
connection_id, 0, msg, msg_len, msg_vid, msg_subtype);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called by the IMV when an IMV-IMC message is to be sent over IF-TNCCS 2.0
|
||||||
|
*/
|
||||||
|
TNC_Result TNC_TNCS_SendMessageLong(TNC_IMVID imv_id,
|
||||||
|
TNC_ConnectionID connection_id,
|
||||||
|
TNC_UInt32 msg_flags,
|
||||||
|
TNC_BufferReference msg,
|
||||||
|
TNC_UInt32 msg_len,
|
||||||
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype,
|
||||||
|
TNC_UInt32 imc_id)
|
||||||
|
{
|
||||||
|
if (!tnc->imvs->is_registered(tnc->imvs, imv_id))
|
||||||
|
{
|
||||||
|
DBG1(DBG_TNC, "ignoring SendMessageLong() from unregistered IMV %u",
|
||||||
|
imv_id);
|
||||||
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
|
}
|
||||||
|
return tnc->tnccs->send_message(tnc->tnccs, imc_id, imv_id, connection_id,
|
||||||
|
msg_flags, msg, msg_len, msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -175,6 +203,10 @@ TNC_Result TNC_TNCS_BindFunction(TNC_IMVID id,
|
|||||||
{
|
{
|
||||||
*function_pointer = (void*)TNC_TNCS_SendMessage;
|
*function_pointer = (void*)TNC_TNCS_SendMessage;
|
||||||
}
|
}
|
||||||
|
else if (streq(function_name, "TNC_TNCS_SendMessageLong"))
|
||||||
|
{
|
||||||
|
*function_pointer = (void*)TNC_TNCS_SendMessageLong;
|
||||||
|
}
|
||||||
else if (streq(function_name, "TNC_TNCS_ProvideRecommendation"))
|
else if (streq(function_name, "TNC_TNCS_ProvideRecommendation"))
|
||||||
{
|
{
|
||||||
*function_pointer = (void*)TNC_TNCS_ProvideRecommendation;
|
*function_pointer = (void*)TNC_TNCS_ProvideRecommendation;
|
||||||
|
|||||||
@@ -295,24 +295,22 @@ METHOD(tnccs_manager_t, request_handshake_retry, TNC_Result,
|
|||||||
METHOD(tnccs_manager_t, send_message, TNC_Result,
|
METHOD(tnccs_manager_t, send_message, TNC_Result,
|
||||||
private_tnc_tnccs_manager_t *this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
private_tnc_tnccs_manager_t *this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
||||||
TNC_ConnectionID id,
|
TNC_ConnectionID id,
|
||||||
|
TNC_UInt32 msg_flags,
|
||||||
TNC_BufferReference msg,
|
TNC_BufferReference msg,
|
||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_len,
|
||||||
TNC_MessageType msg_type)
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype)
|
||||||
|
|
||||||
{
|
{
|
||||||
enumerator_t *enumerator;
|
enumerator_t *enumerator;
|
||||||
tnccs_connection_entry_t *entry;
|
tnccs_connection_entry_t *entry;
|
||||||
tnccs_send_message_t send_message = NULL;
|
tnccs_send_message_t send_message = NULL;
|
||||||
tnccs_t *tnccs = NULL;
|
tnccs_t *tnccs = NULL;
|
||||||
TNC_VendorID msg_vid;
|
|
||||||
TNC_MessageSubtype msg_subtype;
|
|
||||||
|
|
||||||
msg_vid = (msg_type >> 8) & TNC_VENDORID_ANY;
|
|
||||||
msg_subtype = msg_type & TNC_SUBTYPE_ANY;
|
|
||||||
|
|
||||||
if (msg_vid == TNC_VENDORID_ANY || msg_subtype == TNC_SUBTYPE_ANY)
|
if (msg_vid == TNC_VENDORID_ANY || msg_subtype == TNC_SUBTYPE_ANY)
|
||||||
{
|
{
|
||||||
DBG1(DBG_TNC, "not sending message of invalid type 0x%08x", msg_type);
|
DBG1(DBG_TNC, "not sending message of invalid type 0x%02x/0x%08x",
|
||||||
|
msg_vid, msg_subtype);
|
||||||
return TNC_RESULT_INVALID_PARAMETER;
|
return TNC_RESULT_INVALID_PARAMETER;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -332,7 +330,8 @@ METHOD(tnccs_manager_t, send_message, TNC_Result,
|
|||||||
|
|
||||||
if (tnccs && send_message)
|
if (tnccs && send_message)
|
||||||
{
|
{
|
||||||
return send_message(tnccs, imc_id, imv_id, msg, msg_len, msg_type);
|
return send_message(tnccs, imc_id, imv_id, msg_flags, msg, msg_len,
|
||||||
|
msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
return TNC_RESULT_FATAL;
|
return TNC_RESULT_FATAL;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -100,12 +100,14 @@ struct private_tnccs_11_t {
|
|||||||
|
|
||||||
METHOD(tnccs_t, send_msg, TNC_Result,
|
METHOD(tnccs_t, send_msg, TNC_Result,
|
||||||
private_tnccs_11_t* this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
private_tnccs_11_t* this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
||||||
|
TNC_UInt32 msg_flags,
|
||||||
TNC_BufferReference msg,
|
TNC_BufferReference msg,
|
||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_len,
|
||||||
TNC_MessageType msg_type)
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype)
|
||||||
{
|
{
|
||||||
tnccs_msg_t *tnccs_msg;
|
tnccs_msg_t *tnccs_msg;
|
||||||
u_int32_t vendor_id, subtype;
|
TNC_MessageType msg_type;
|
||||||
enum_name_t *pa_subtype_names;
|
enum_name_t *pa_subtype_names;
|
||||||
|
|
||||||
if (!this->send_msg)
|
if (!this->send_msg)
|
||||||
@@ -115,18 +117,23 @@ METHOD(tnccs_t, send_msg, TNC_Result,
|
|||||||
this->is_server ? imv_id : imc_id);
|
this->is_server ? imv_id : imc_id);
|
||||||
return TNC_RESULT_ILLEGAL_OPERATION;
|
return TNC_RESULT_ILLEGAL_OPERATION;
|
||||||
}
|
}
|
||||||
vendor_id = msg_type >> 8;
|
if (msg_vid > TNC_VENDORID_ANY || msg_subtype > TNC_SUBTYPE_ANY)
|
||||||
subtype = msg_type & 0xff;
|
{
|
||||||
pa_subtype_names = get_pa_subtype_names(vendor_id);
|
return TNC_RESULT_NO_LONG_MESSAGE_TYPES;
|
||||||
|
}
|
||||||
|
msg_type = (msg_vid << 8) | msg_subtype;
|
||||||
|
|
||||||
|
pa_subtype_names = get_pa_subtype_names(msg_vid);
|
||||||
if (pa_subtype_names)
|
if (pa_subtype_names)
|
||||||
{
|
{
|
||||||
DBG2(DBG_TNC, "creating IMC-IMV message type '%N/%N' 0x%06x/0x%02x",
|
DBG2(DBG_TNC, "creating IMC-IMV message type '%N/%N' 0x%06x/0x%02x",
|
||||||
pen_names, vendor_id, pa_subtype_names, subtype, vendor_id, subtype);
|
pen_names, msg_vid, pa_subtype_names, msg_subtype,
|
||||||
|
msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DBG2(DBG_TNC, "creating IMC-IMV message type '%N' 0x%06x/0x%02x",
|
DBG2(DBG_TNC, "creating IMC-IMV message type '%N' 0x%06x/0x%02x",
|
||||||
pen_names, vendor_id, vendor_id, subtype);
|
pen_names, msg_vid, msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
tnccs_msg = imc_imv_msg_create(msg_type, chunk_create(msg, msg_len));
|
tnccs_msg = imc_imv_msg_create(msg_type, chunk_create(msg, msg_len));
|
||||||
|
|
||||||
|
|||||||
@@ -211,12 +211,6 @@ METHOD(pb_pa_msg_t, get_exclusive_flag, bool,
|
|||||||
return this->excl;
|
return this->excl;
|
||||||
}
|
}
|
||||||
|
|
||||||
METHOD(pb_pa_msg_t, set_exclusive_flag, void,
|
|
||||||
private_pb_pa_msg_t *this, bool excl)
|
|
||||||
{
|
|
||||||
this->excl = excl;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* See header
|
* See header
|
||||||
*/
|
*/
|
||||||
@@ -237,7 +231,6 @@ pb_tnc_msg_t *pb_pa_msg_create_from_data(chunk_t data)
|
|||||||
.get_validator_id = _get_validator_id,
|
.get_validator_id = _get_validator_id,
|
||||||
.get_body = _get_body,
|
.get_body = _get_body,
|
||||||
.get_exclusive_flag = _get_exclusive_flag,
|
.get_exclusive_flag = _get_exclusive_flag,
|
||||||
.set_exclusive_flag = _set_exclusive_flag,
|
|
||||||
},
|
},
|
||||||
.type = PB_MSG_PA,
|
.type = PB_MSG_PA,
|
||||||
.encoding = chunk_clone(data),
|
.encoding = chunk_clone(data),
|
||||||
@@ -251,7 +244,7 @@ pb_tnc_msg_t *pb_pa_msg_create_from_data(chunk_t data)
|
|||||||
*/
|
*/
|
||||||
pb_tnc_msg_t *pb_pa_msg_create(u_int32_t vendor_id, u_int32_t subtype,
|
pb_tnc_msg_t *pb_pa_msg_create(u_int32_t vendor_id, u_int32_t subtype,
|
||||||
u_int16_t collector_id, u_int16_t validator_id,
|
u_int16_t collector_id, u_int16_t validator_id,
|
||||||
chunk_t msg_body)
|
bool excl, chunk_t msg_body)
|
||||||
{
|
{
|
||||||
private_pb_pa_msg_t *this;
|
private_pb_pa_msg_t *this;
|
||||||
|
|
||||||
@@ -269,13 +262,13 @@ pb_tnc_msg_t *pb_pa_msg_create(u_int32_t vendor_id, u_int32_t subtype,
|
|||||||
.get_validator_id = _get_validator_id,
|
.get_validator_id = _get_validator_id,
|
||||||
.get_body = _get_body,
|
.get_body = _get_body,
|
||||||
.get_exclusive_flag = _get_exclusive_flag,
|
.get_exclusive_flag = _get_exclusive_flag,
|
||||||
.set_exclusive_flag = _set_exclusive_flag,
|
|
||||||
},
|
},
|
||||||
.type = PB_MSG_PA,
|
.type = PB_MSG_PA,
|
||||||
.vendor_id = vendor_id,
|
.vendor_id = vendor_id,
|
||||||
.subtype = subtype,
|
.subtype = subtype,
|
||||||
.collector_id = collector_id,
|
.collector_id = collector_id,
|
||||||
.validator_id = validator_id,
|
.validator_id = validator_id,
|
||||||
|
.excl = excl,
|
||||||
.msg_body = chunk_clone(msg_body),
|
.msg_body = chunk_clone(msg_body),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -71,12 +71,6 @@ struct pb_pa_msg_t {
|
|||||||
*/
|
*/
|
||||||
bool (*get_exclusive_flag)(pb_pa_msg_t *this);
|
bool (*get_exclusive_flag)(pb_pa_msg_t *this);
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the exclusive flag
|
|
||||||
*
|
|
||||||
* @param excl vexclusive flag
|
|
||||||
*/
|
|
||||||
void (*set_exclusive_flag)(pb_pa_msg_t *this, bool excl);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -86,11 +80,12 @@ struct pb_pa_msg_t {
|
|||||||
* @param subtype PA Subtype
|
* @param subtype PA Subtype
|
||||||
* @param collector_id Posture Collector ID
|
* @param collector_id Posture Collector ID
|
||||||
* @param validator_id Posture Validator ID
|
* @param validator_id Posture Validator ID
|
||||||
|
* @param excl Exclusive Flag
|
||||||
* @param msg_body PA Message Body
|
* @param msg_body PA Message Body
|
||||||
*/
|
*/
|
||||||
pb_tnc_msg_t *pb_pa_msg_create(u_int32_t vendor_id, u_int32_t subtype,
|
pb_tnc_msg_t *pb_pa_msg_create(u_int32_t vendor_id, u_int32_t subtype,
|
||||||
u_int16_t collector_id, u_int16_t validator_id,
|
u_int16_t collector_id, u_int16_t validator_id,
|
||||||
chunk_t msg_body);
|
bool excl, chunk_t msg_body);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create an unprocessed PB-PA message from raw data
|
* Create an unprocessed PB-PA message from raw data
|
||||||
|
|||||||
@@ -99,15 +99,16 @@ struct private_tnccs_20_t {
|
|||||||
|
|
||||||
METHOD(tnccs_t, send_msg, TNC_Result,
|
METHOD(tnccs_t, send_msg, TNC_Result,
|
||||||
private_tnccs_20_t* this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
private_tnccs_20_t* this, TNC_IMCID imc_id, TNC_IMVID imv_id,
|
||||||
|
TNC_UInt32 msg_flags,
|
||||||
TNC_BufferReference msg,
|
TNC_BufferReference msg,
|
||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_len,
|
||||||
TNC_MessageType msg_type)
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype)
|
||||||
{
|
{
|
||||||
TNC_MessageSubtype msg_sub_type;
|
|
||||||
TNC_VendorID msg_vendor_id;
|
|
||||||
pb_tnc_msg_t *pb_tnc_msg;
|
pb_tnc_msg_t *pb_tnc_msg;
|
||||||
pb_tnc_batch_type_t batch_type;
|
pb_tnc_batch_type_t batch_type;
|
||||||
enum_name_t *pa_subtype_names;
|
enum_name_t *pa_subtype_names;
|
||||||
|
bool excl;
|
||||||
|
|
||||||
if (!this->send_msg)
|
if (!this->send_msg)
|
||||||
{
|
{
|
||||||
@@ -116,24 +117,22 @@ METHOD(tnccs_t, send_msg, TNC_Result,
|
|||||||
this->is_server ? imv_id : imc_id);
|
this->is_server ? imv_id : imc_id);
|
||||||
return TNC_RESULT_ILLEGAL_OPERATION;
|
return TNC_RESULT_ILLEGAL_OPERATION;
|
||||||
}
|
}
|
||||||
|
excl = (msg_flags & TNC_MESSAGE_FLAGS_EXCLUSIVE) != 0;
|
||||||
|
|
||||||
msg_sub_type = msg_type & TNC_SUBTYPE_ANY;
|
pb_tnc_msg = pb_pa_msg_create(msg_vid, msg_subtype, imc_id, imv_id,
|
||||||
msg_vendor_id = (msg_type >> 8) & TNC_VENDORID_ANY;
|
excl, chunk_create(msg, msg_len));
|
||||||
|
|
||||||
pb_tnc_msg = pb_pa_msg_create(msg_vendor_id, msg_sub_type, imc_id, imv_id,
|
pa_subtype_names = get_pa_subtype_names(msg_vid);
|
||||||
chunk_create(msg, msg_len));
|
|
||||||
|
|
||||||
pa_subtype_names = get_pa_subtype_names(msg_vendor_id);
|
|
||||||
if (pa_subtype_names)
|
if (pa_subtype_names)
|
||||||
{
|
{
|
||||||
DBG2(DBG_TNC, "creating PB-PA message type '%N/%N' 0x%06x/0x%08x",
|
DBG2(DBG_TNC, "creating PB-PA message type '%N/%N' 0x%06x/0x%08x",
|
||||||
pen_names, msg_vendor_id, pa_subtype_names, msg_sub_type,
|
pen_names, msg_vid, pa_subtype_names, msg_subtype,
|
||||||
msg_vendor_id, msg_sub_type);
|
msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
DBG2(DBG_TNC, "creating PB-PA message type '%N' 0x%06x/0x%08x",
|
DBG2(DBG_TNC, "creating PB-PA message type '%N' 0x%06x/0x%08x",
|
||||||
pen_names, msg_vendor_id, msg_vendor_id, msg_sub_type);
|
pen_names, msg_vid, msg_vid, msg_subtype);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* adding PA message to SDATA or CDATA batch only */
|
/* adding PA message to SDATA or CDATA batch only */
|
||||||
|
|||||||
@@ -63,15 +63,20 @@ typedef tnccs_t *(*tnccs_constructor_t)(bool is_server);
|
|||||||
*
|
*
|
||||||
* @param imc_id ID of IMC or TNC_IMCID_ANY
|
* @param imc_id ID of IMC or TNC_IMCID_ANY
|
||||||
* @param imc_id ID of IMV or TNC_IMVID_ANY
|
* @param imc_id ID of IMV or TNC_IMVID_ANY
|
||||||
|
* @param msg_flags message flags
|
||||||
* @param msg message to be added
|
* @param msg message to be added
|
||||||
* @param msg_len message length
|
* @param msg_len message length
|
||||||
* @param msg_type message type
|
* @param msg_vid message vendor ID
|
||||||
* @return result code
|
* @param msg_subtype message subtype
|
||||||
|
* @return return code
|
||||||
*/
|
*/
|
||||||
typedef TNC_Result (*tnccs_send_message_t)(tnccs_t* tncss, TNC_IMCID imc_id,
|
typedef TNC_Result (*tnccs_send_message_t)(tnccs_t* tncss,
|
||||||
TNC_IMVID imv_id,
|
TNC_IMCID imc_id,
|
||||||
TNC_BufferReference msg,
|
TNC_IMVID imv_id,
|
||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_flags,
|
||||||
TNC_MessageType msg_type);
|
TNC_BufferReference msg,
|
||||||
|
TNC_UInt32 msg_len,
|
||||||
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype);
|
||||||
|
|
||||||
#endif /** TNCCS_H_ @}*/
|
#endif /** TNCCS_H_ @}*/
|
||||||
|
|||||||
@@ -106,17 +106,22 @@ struct tnccs_manager_t {
|
|||||||
* @param imc_id ID of IMC or TNC_IMCID_ANY
|
* @param imc_id ID of IMC or TNC_IMCID_ANY
|
||||||
* @param imv_id ID of IMV or TNC_IMVID_ANY
|
* @param imv_id ID of IMV or TNC_IMVID_ANY
|
||||||
* @param id ID of target connection
|
* @param id ID of target connection
|
||||||
|
* @param msg_flags message flags
|
||||||
* @param msg message to be added
|
* @param msg message to be added
|
||||||
* @param msg_len message length
|
* @param msg_len message length
|
||||||
* @param msg_type message type
|
* @param msg_vid message vendor ID
|
||||||
|
* @param msg_subtype message subtype
|
||||||
* @return return code
|
* @return return code
|
||||||
*/
|
*/
|
||||||
TNC_Result (*send_message)(tnccs_manager_t *this, TNC_IMCID imc_id,
|
TNC_Result (*send_message)(tnccs_manager_t *this,
|
||||||
TNC_IMVID imv_id,
|
TNC_IMCID imc_id,
|
||||||
TNC_ConnectionID id,
|
TNC_IMVID imv_id,
|
||||||
TNC_BufferReference msg,
|
TNC_ConnectionID id,
|
||||||
TNC_UInt32 msg_len,
|
TNC_UInt32 msg_flags,
|
||||||
TNC_MessageType msg_type);
|
TNC_BufferReference msg,
|
||||||
|
TNC_UInt32 msg_len,
|
||||||
|
TNC_VendorID msg_vid,
|
||||||
|
TNC_MessageSubtype msg_subtype);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deliver an IMV Action Recommendation and IMV Evaluation Result to the TNCS
|
* Deliver an IMV Action Recommendation and IMV Evaluation Result to the TNCS
|
||||||
|
|||||||
Reference in New Issue
Block a user