/******************************************************************************* ################################################################################ # 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 all F1AP message handler related functionality */ #include #include #include #include #include "ProtocolExtensionField.h" #include "F1AP-PDU.h" #include "Cells-to-be-Activated-List.h" #include "envopt.h" /* Environment options */ #include "envdep.h" /* Environment dependent */ #include "envind.h" /* Environment independent */ #include "gen.h" /* General */ #include "ssi.h" /* System services */ #include "ss_queue.h" #include "ss_task.h" #include "ss_msg.h" #include "gen.x" /* General */ #include "ssi.x" /* System services */ #include "ss_queue.x" #include "ss_task.x" #include "ss_msg.x" #include "du_log.h" #define ENCODE_FAIL -1 #define TRANS_ID 1 #define RRC_SIZE 1 #define ENC_BUF_MAX_LEN 100 #define SUL_BAND_COUNT 0 #define UL_SRBID 1 #define DL_SRBID 0 #define DU_ID 1 #define CU_ID 1 #define CRNTI 17017 #define CELL_INDEX 0 extern char encBuf[ENC_BUF_MAX_LEN]; int encBufSize; void F1APMsgHdlr(Buffer *mBuf); S16 BuildAndSendF1SetupReq(); S16 procGNBDUCfgUpdAck(F1AP_PDU_t *f1apMsg); /********************************************************************** End of file **********************************************************************/