Commit 1c8c839f authored by Robert Schmidt's avatar Robert Schmidt

FlexRAN: Reformat code for X2 HO NetControl activation

parent e33be3cc
...@@ -910,13 +910,15 @@ int flexran_agent_handle_enb_config_reply(mid_t mod_id, const void *params, Prot ...@@ -910,13 +910,15 @@ int flexran_agent_handle_enb_config_reply(mid_t mod_id, const void *params, Prot
&& enb_config->cell_config[0]->has_ul_freq && enb_config->cell_config[0]->has_ul_freq
&& enb_config->cell_config[0]->has_dl_bandwidth) { && enb_config->cell_config[0]->has_dl_bandwidth) {
initiate_soft_restart(mod_id, enb_config->cell_config[0]); initiate_soft_restart(mod_id, enb_config->cell_config[0]);
} } else if (flexran_agent_get_rrc_xface(mod_id)
&& enb_config->cell_config[0]->has_x2_ho_net_control) {
if (flexran_agent_get_rrc_xface(mod_id) && enb_config->cell_config[0]->has_x2_ho_net_control) { LOG_I(FLEXRAN_AGENT,
if (flexran_set_x2_ho_net_control(mod_id, enb_config->cell_config[0]->x2_ho_net_control) < 0) { "setting X2 HO NetControl to %d\n",
enb_config->cell_config[0]->x2_ho_net_control);
const int rc = flexran_set_x2_ho_net_control(mod_id, enb_config->cell_config[0]->x2_ho_net_control);
if (rc < 0)
LOG_E(FLEXRAN_AGENT, "Error in configuring X2 handover controlled by network"); LOG_E(FLEXRAN_AGENT, "Error in configuring X2 handover controlled by network");
} }
}
*msg = NULL; *msg = NULL;
return 0; return 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