Commit 27b5ae1b authored by winckel's avatar winckel

Fixed some warnings.

pre-ci ok.

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@4423 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent ec8c37c7
......@@ -1374,7 +1374,7 @@ int schedule_MBMS(unsigned char Mod_id,u32 frame, u8 subframe) {
mcch_sdu_length = mac_rrc_data_req(Mod_id,
frame,
MCCH,1,
(char*)&eNB_mac_inst[Mod_id].MCCH_pdu.payload[0],
&eNB_mac_inst[Mod_id].MCCH_pdu.payload[0],
1,// this is eNB
Mod_id, // index
i); // this is the mbsfn sync area index
......@@ -1502,7 +1502,7 @@ int schedule_MBMS(unsigned char Mod_id,u32 frame, u8 subframe) {
sdu_lengths,
sdu_lcids,
255, // no drx
NULL, // no timing advance
0, // no timing advance
NULL, // no contention res id
padding,
post_padding);
......@@ -1525,7 +1525,7 @@ int schedule_MBMS(unsigned char Mod_id,u32 frame, u8 subframe) {
#if defined(USER_MODE) && defined(OAI_EMU)
/* Tracing of PDU is done on UE side */
if (oai_emulation.info.opt_enabled)
trace_pdu(1, (uint8_t *)eNB_mac_inst[Mod_id].MCH_pdu.payload[0],
trace_pdu(1, (uint8_t *)eNB_mac_inst[Mod_id].MCH_pdu.payload,
TBS, Mod_id, 6, 0xffff, // M_RNTI = 6 in wirehsark
eNB_mac_inst[Mod_id].subframe,0,0);
LOG_D(OPT,"[eNB %d][MCH] Frame %d : MAC PDU with size %d\n",
......
......@@ -502,7 +502,7 @@ void ue_send_mch_sdu(u8 Mod_id, u32 frame, u8 *sdu, u16 sdu_len, u8 eNB_index, u
mac_rrc_data_ind(Mod_id,
frame,
MCCH,
(char *)payload_ptr, rx_lengths[i], 0, eNB_index, sync_area);
payload_ptr, rx_lengths[i], 0, eNB_index, sync_area);
}
else if (rx_lcids[i] == MTCH) {
if (UE_mac_inst[Mod_id].msi_status==1) {
......
......@@ -298,7 +298,7 @@ Send Packets when:
}
unsigned char *packet_gen_multicast(int src, int dst, int ctime, int * pkt_size){
unsigned char *packet_gen_multicast(int src, int dst, int ctime, unsigned int * pkt_size){
*pkt_size =0;
unsigned int size=0;
......
......@@ -96,6 +96,17 @@ char * random_string(int size, ALPHABET_GEN mode, ALPHABET_TYPE data_type);
*/
unsigned char *packet_gen(int src, int dst, int app, int ctime, unsigned int *pkt_size);
/*! \fn int packet_gen(int src, int dst, int state, int ctime)
* \brief return int= 1 if the packet is generated: OTG header + header + payload, else 0
* \param[in] src source identity
* \param[in] dst destination id
* \param[in] application id that might generate the packet
* \param[out] final packet size
* \param[out] packet_t: the generated packet: otg_header + header + payload
* \note
* @ingroup _otg
*/
unsigned char *packet_gen_multicast(int src, int dst, int ctime, unsigned int * pkt_size);
/*! \fn char *header_gen(int hdr_size);
* \brief generate IP (v4/v6) + transport header(TCP/UDP)
......@@ -155,6 +166,7 @@ int adjust_size(int size);
*/
void header_size_gen(int src, int dst, int application);
void init_predef_multicast_traffic();
/*! \fn void init_predef_traffic();
* \brief initialise OTG with predifined value for pre-configured traffic: cbr, openarena,etc.
......
......@@ -12,7 +12,7 @@
#include "UTIL/OTG/otg_tx.h"
#include "UTIL/OTG/otg.h"
#include "UTIL/OTG/otg_vars.h"
#include "oml.h"
mapping log_level_names[] =
{
......@@ -600,7 +600,6 @@ int ocg_config_app(){
char *check_format1;
char *check_format2;
char *check_format1_dst;
char *check_format2_dst;
char *source_id_start;
char *source_id_end;
char *destination_id_start;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment