Commit dc2865f3 authored by Melissa Elkadi's avatar Melissa Elkadi

Added logs and updated eNB conf file for EPC if necessary

parent bfa5d486
...@@ -191,10 +191,10 @@ eNBs = ...@@ -191,10 +191,10 @@ eNBs =
NETWORK_INTERFACES : NETWORK_INTERFACES :
{ {
ENB_INTERFACE_NAME_FOR_S1_MME = "lo"; ENB_INTERFACE_NAME_FOR_S1_MME = "ctrl0";
ENB_IPV4_ADDRESS_FOR_S1_MME = "127.0.0.1"; ENB_IPV4_ADDRESS_FOR_S1_MME = "192.168.61.3";
ENB_INTERFACE_NAME_FOR_S1U = "lo"; ENB_INTERFACE_NAME_FOR_S1U = "ctrl0";
ENB_IPV4_ADDRESS_FOR_S1U = "127.0.0.1"; ENB_IPV4_ADDRESS_FOR_S1U = "192.168.61.5";
ENB_PORT_FOR_S1U = 2152; # Spec 2152 ENB_PORT_FOR_S1U = 2152; # Spec 2152
ENB_IPV4_ADDRESS_FOR_X2C = "127.0.0.1"; ENB_IPV4_ADDRESS_FOR_X2C = "127.0.0.1";
ENB_PORT_FOR_X2C = 36422; # Spec 36422 ENB_PORT_FOR_X2C = 36422; # Spec 36422
......
...@@ -9027,6 +9027,7 @@ void rrc_eNB_process_ENDC_x2_setup_request(int mod_id, x2ap_ENDC_setup_req_t *m) ...@@ -9027,6 +9027,7 @@ void rrc_eNB_process_ENDC_x2_setup_request(int mod_id, x2ap_ENDC_setup_req_t *m)
} }
void rrc_eNB_process_AdditionResponseInformation(const module_id_t enb_mod_idP, x2ap_ENDC_sgnb_addition_req_ACK_t *m) { void rrc_eNB_process_AdditionResponseInformation(const module_id_t enb_mod_idP, x2ap_ENDC_sgnb_addition_req_ACK_t *m) {
LOG_I(RRC, "Melissa we got here %s():%d\n", __FUNCTION__, __LINE__);
NR_CG_Config_t *CG_Config = NULL; NR_CG_Config_t *CG_Config = NULL;
{ {
int i; int i;
...@@ -9472,6 +9473,7 @@ void *rrc_enb_process_itti_msg(void *notUsed) { ...@@ -9472,6 +9473,7 @@ void *rrc_enb_process_itti_msg(void *notUsed) {
break; break;
case X2AP_ENDC_SGNB_ADDITION_REQ_ACK: { case X2AP_ENDC_SGNB_ADDITION_REQ_ACK: {
LOG_I(RRC, "Melissa Elkadi we got here %s():%d\n", __FUNCTION__, __LINE__);
rrc_eNB_process_AdditionResponseInformation(ENB_INSTANCE_TO_MODULE_ID(instance), &X2AP_ENDC_SGNB_ADDITION_REQ_ACK(msg_p)); rrc_eNB_process_AdditionResponseInformation(ENB_INSTANCE_TO_MODULE_ID(instance), &X2AP_ENDC_SGNB_ADDITION_REQ_ACK(msg_p));
break; break;
} }
......
...@@ -911,7 +911,8 @@ gtpv1u_create_s1u_tunnel( ...@@ -911,7 +911,8 @@ gtpv1u_create_s1u_tunnel(
do { do {
s1u_teid = gtpv1u_new_teid(); s1u_teid = gtpv1u_new_teid();
LOG_D(GTPU, "gtpv1u_create_s1u_tunnel() 0x%x %u(dec)\n", s1u_teid, s1u_teid); LOG_I(GTPU, "gtpv1u_data_g %p\n", RC.gtpv1u_data_g);
LOG_I(GTPU, "gtpv1u_create_s1u_tunnel() 0x%x %u(dec)\n", s1u_teid, s1u_teid);
stack_req.apiInfo.createTunnelEndPointInfo.teid = s1u_teid; stack_req.apiInfo.createTunnelEndPointInfo.teid = s1u_teid;
stack_req.apiInfo.createTunnelEndPointInfo.hUlpSession = 0; stack_req.apiInfo.createTunnelEndPointInfo.hUlpSession = 0;
stack_req.apiInfo.createTunnelEndPointInfo.hStackSession = 0; stack_req.apiInfo.createTunnelEndPointInfo.hStackSession = 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