Moving all common header file into common_def.h file
[o-du/l2.git] / src / cu_stub / cu_f1ap_msg_hdl.h
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /* This file contains all F1AP message handler related functionality */
20 #include<ProtocolIE-Field.h>
21 #include "ProtocolExtensionField.h"
22 #include "F1AP-PDU.h"
23 #include "Cells-to-be-Activated-List.h"
24 #include "DL-CCCH-Message.h"
25 #include "SRB-ToAddModList.h"
26 #include "SRB-ToAddMod.h"
27 #include "RRCSetup-IEs.h"
28 #include "RRCSetup.h"
29 #include "du_log.h"
30
31 #define ENCODE_FAIL -1
32 #define TRANS_ID 1
33 #define RRC_SIZE 1
34 #define ENC_BUF_MAX_LEN 100
35 #define SUL_BAND_COUNT 0
36 #define UL_SRBID        1
37 #define DL_SRBID        0
38 #define DU_ID           1
39 #define CU_ID           1
40 #define CRNTI           17017
41 #define CELL_INDEX      0
42 #define SRB1 1
43
44 /* allocate and zero out a static buffer */
45 #define CU_ALLOC(_datPtr, _size)                                \
46 {                                                               \
47    S16 _ret;                                                    \
48    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
49                     (Data **)&_datPtr, _size);                  \
50    if(_ret == ROK)                                              \
51       cmMemset((U8*)_datPtr, 0, _size);                         \
52    else                                                         \
53       _datPtr = NULLP;                                          \
54 }
55
56 /* free a static buffer */
57 #define CU_FREE(_datPtr, _size)                                 \
58    if(_datPtr)                                                  \
59       SPutSBuf(CU_APP_MEM_REG, CU_POOL,                      \
60          (Data *)_datPtr, _size);
61
62
63 typedef struct f1apDb
64 {
65    OCTET_STRING_t duToCuContainer;
66 }F1apMsgDb;
67   
68 F1apMsgDb f1apMsgDb;
69 void F1APMsgHdlr(Buffer *mBuf);
70
71 /**********************************************************************
72          End of file
73 **********************************************************************/