/******************************************************************************* ################################################################################ # Copyright (c) [2017-2019] [Radisys] # # # # Licensed under the Apache License, Version 2.0 (the "License"); # # you may not use this file except in compliance with the License. # # You may obtain a copy of the License at # # # # http://www.apache.org/licenses/LICENSE-2.0 # # # # Unless required by applicable law or agreed to in writing, software # # distributed under the License is distributed on an "AS IS" BASIS, # # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # # See the License for the specific language governing permissions and # # limitations under the License. # ################################################################################ *******************************************************************************/ /* This file contains message handling functionality for DU APP */ #ifndef __DU_CELL_MGR_H__ #define __DU_CELL_MGR_H__ #include "du_mgr.h" #include "du_log.h" #include "du_f1ap_msg_hdl.h" #include "du_e2ap_msg_hdl.h" #include "rgr.h" #include "rgr.x" S16 procF1SetupRsp(F1AP_PDU_t *f1apMsg); S16 procCellsToBeActivated(Cells_to_be_Activated_List_t cellsToBeActivated); S16 procE2SetupRsp(E2AP_PDU_t *e2apMsg); S16 duSendSchGnbCfg(); S16 duSendSchGnbCfgToMac(RgrCfgReqInfo *cfgReq, U32 trans_id); #endif /********************************************************************** End of file **********************************************************************/