Commit f2653443 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

passing S+D from PDCP to lower layers (PC5-S)

parent a76a5a56
...@@ -769,12 +769,6 @@ void ue_send_sl_sdu(module_id_t module_idP, ...@@ -769,12 +769,6 @@ void ue_send_sl_sdu(module_id_t module_idP,
//filter incoming packet based on destination address //filter incoming packet based on destination address
destinationL2Id = (longh->DST07<<16) | (longh->DST815 <<8) | (longh->DST1623); destinationL2Id = (longh->DST07<<16) | (longh->DST815 <<8) | (longh->DST1623);
LOG_I( MAC, "[DestinationL2Id: 0x%08x] \n", destinationL2Id ); LOG_I( MAC, "[DestinationL2Id: 0x%08x] \n", destinationL2Id );
//match the destinationL2Id with UE L2Id or groupL2ID
/* if (!((destinationL2Id == UE_mac_inst[module_idP].sourceL2Id) | (destinationL2Id == UE_mac_inst[module_idP].groupL2Id))){
LOG_I( MAC, "[Destination Id is neither matched with Source Id nor with Group Id, drop the packet!!! \n");
return;
}
*/
//in case of 1-n communication, verify that UE belongs to that group //in case of 1-n communication, verify that UE belongs to that group
int i=0; int i=0;
for (i=0; i< MAX_NUM_DEST; i++) for (i=0; i< MAX_NUM_DEST; i++)
......
...@@ -405,7 +405,7 @@ rlc_op_status_t rlc_data_req (const protocol_ctxt_t* const ctxt_pP, ...@@ -405,7 +405,7 @@ rlc_op_status_t rlc_data_req (const protocol_ctxt_t* const ctxt_pP,
rlc_mode = rlc_union_p->mode; rlc_mode = rlc_union_p->mode;
} else { } else {
rlc_mode = RLC_MODE_NONE; rlc_mode = RLC_MODE_NONE;
AssertFatal (0 , "RLC not configured key %ju\n", key); //AssertFatal (0 , "RLC not configured key %ju\n", key);
} }
if (MBMS_flagP == 0) { if (MBMS_flagP == 0) {
......
...@@ -5832,6 +5832,7 @@ void *rrc_control_socket_thread_fct(void *arg) ...@@ -5832,6 +5832,7 @@ void *rrc_control_socket_thread_fct(void *arg)
// configure lower layers PDCP/MAC/PHY for this communication // configure lower layers PDCP/MAC/PHY for this communication
//Establish a new RBID/LCID for this communication //Establish a new RBID/LCID for this communication
// Establish a SLRB (using DRB 10 for now) // Establish a SLRB (using DRB 10 for now)
UE = &UE_rrc_inst[module_id];
PROTOCOL_CTXT_SET_BY_MODULE_ID(&ctxt, 0, ENB_FLAG_NO, 0x1234, 0, 0,0); PROTOCOL_CTXT_SET_BY_MODULE_ID(&ctxt, 0, ENB_FLAG_NO, 0x1234, 0, 0,0);
UE->DRB_config[0][0] = CALLOC(1,sizeof(struct DRB_ToAddMod)); UE->DRB_config[0][0] = CALLOC(1,sizeof(struct DRB_ToAddMod));
...@@ -5917,7 +5918,7 @@ void *rrc_control_socket_thread_fct(void *arg) ...@@ -5917,7 +5918,7 @@ void *rrc_control_socket_thread_fct(void *arg)
(DRB_ToReleaseList_t*)NULL (DRB_ToReleaseList_t*)NULL
#ifdef Rel14 #ifdef Rel14
,(PMCH_InfoList_r9_t *)NULL ,(PMCH_InfoList_r9_t *)NULL
, sourceL2Id, groupL2Id , sourceL2Id, destinationL2Id
#endif #endif
); );
...@@ -5956,11 +5957,11 @@ void *rrc_control_socket_thread_fct(void *arg) ...@@ -5956,11 +5957,11 @@ void *rrc_control_socket_thread_fct(void *arg)
#if defined(Rel10) || defined(Rel14) #if defined(Rel10) || defined(Rel14)
,CONFIG_ACTION_ADD, ,CONFIG_ACTION_ADD,
&sourceL2Id, &sourceL2Id,
&groupL2Id &destinationL2Id
#endif #endif
); );
} else {//RX } else {//RX
rrc_rlc_config_asn1_req(&ctxt, /* rrc_rlc_config_asn1_req(&ctxt,
(SRB_ToAddModList_t*)NULL, (SRB_ToAddModList_t*)NULL,
UE->DRB_configList, UE->DRB_configList,
(DRB_ToReleaseList_t*)NULL (DRB_ToReleaseList_t*)NULL
...@@ -5969,7 +5970,7 @@ void *rrc_control_socket_thread_fct(void *arg) ...@@ -5969,7 +5970,7 @@ void *rrc_control_socket_thread_fct(void *arg)
, sourceL2Id, 0 , sourceL2Id, 0
#endif #endif
); );
*/
//configure MAC with sourceL2Id/groupL2ID //configure MAC with sourceL2Id/groupL2ID
rrc_mac_config_req_ue(module_id,0,0, //eNB_index =0 rrc_mac_config_req_ue(module_id,0,0, //eNB_index =0
......
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