Commit e1716a32 authored by Robert Schmidt's avatar Robert Schmidt

FlexRAN: Send the Slice Configuration in enb_config_reply

parent fd8a7c7c
......@@ -35,6 +35,7 @@
#include "flexran_agent_extern.h"
#include "flexran_agent_net_comm.h"
#include "flexran_agent_ran_api.h"
#include "flexran_agent_mac_internal.h"
#include "PHY/extern.h"
#include "log.h"
......@@ -290,6 +291,8 @@ int flexran_agent_destroy_enb_config_reply(Protocol__FlexranMessage *msg) {
free(reply->cell_config[i]);
}
free(reply->cell_config);
/* don't free the slice_config, it is maintained internally during
* the liftetime of the agent */
free(reply);
free(msg);
......@@ -1030,6 +1033,10 @@ int flexran_agent_enb_config_reply(mid_t mod_id, const void *params, Protocol__F
cell_conf[i]->carrier_index = i;
cell_conf[i]->has_carrier_index = 1;
/* get a pointer to the config which is maintained in the agent throughout
* its lifetime */
cell_conf[i]->slice_config = flexran_agent_get_slice_config(mod_id);
}
enb_config_reply_msg->cell_config=cell_conf;
}
......
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