ITTI_DEBUG(ITTI_DEBUG_ISSUES," Message %s, number %lu with priority %d can not be sent from %s to queue (%u:%s), unconfigured or ended destination task!\n",
itti_desc.messages_info[message_id].name,
message_number,
priority,
itti_get_task_name(origin_task_id),
destination_task_id,
itti_get_task_name(destination_task_id));
}else{
if(!emulate_rf){
/* We cannot send a message if the task is not running */
ITTI_DEBUG(ITTI_DEBUG_ISSUES," Message %s, number %lu with priority %d can not be sent from %s to queue (%u:%s), unconfigured or ended destination task!\n",
itti_desc.messages_info[message_id].name,
message_number,
priority,
itti_get_task_name(origin_task_id),
destination_task_id,
itti_get_task_name(destination_task_id));
}else{
/* We cannot send a message if the task is not running */
/* Message header is the common part that should never change between
* remote process and this one.
*/
typedefstruct{
/* The size of this structure */
uint32_tmessage_size;
itti_message_types_tmessage_type;
}itti_socket_header_t;
typedefstruct{
charmessage_number_char[12];/* 9 chars are needed to store an unsigned 32 bits value in decimal, but must be a multiple of 32 bits to avoid alignment issues */