Merge "MIB periodicity fix Jira ID : ODUHIGH-183"
[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<stdio.h>
21 #include<sys/types.h>
22 #include<string.h>
23 #include<ProtocolIE-Field.h>
24 #include "ProtocolExtensionField.h"
25 #include "F1AP-PDU.h"
26 #include "Cells-to-be-Activated-List.h"
27 #include "DL-CCCH-Message.h"
28 #include "SRB-ToAddModList.h"
29 #include "SRB-ToAddMod.h"
30 #include "RRCSetup-IEs.h"
31 #include "RRCSetup.h"
32
33 #include "envopt.h"        /* Environment options */
34 #include "envdep.h"        /* Environment dependent */
35 #include "envind.h"        /* Environment independent */
36 #include "gen.h"           /* General */
37 #include "ssi.h"           /* System services */
38 #include "ss_queue.h"
39 #include "ss_task.h"
40 #include "ss_msg.h"
41
42 #include "gen.x"           /* General */
43 #include "ssi.x"   /* System services */
44 #include "ss_queue.x"
45 #include "ss_task.x"
46 #include "ss_msg.x"
47
48 #include "du_log.h"
49
50 #define ENCODE_FAIL -1
51 #define TRANS_ID 1
52 #define RRC_SIZE 1
53 #define ENC_BUF_MAX_LEN 100
54 #define SUL_BAND_COUNT 0
55 #define UL_SRBID        1
56 #define DL_SRBID        0
57 #define DU_ID           1
58 #define CU_ID           1
59 #define CRNTI           17017
60 #define CELL_INDEX      0
61 #define SRB1 1
62
63 /* allocate and zero out a static buffer */
64 #define CU_ALLOC(_datPtr, _size)                                \
65 {                                                               \
66    S16 _ret;                                                    \
67    _ret = SGetSBuf(CU_APP_MEM_REG, CU_POOL,                  \
68                     (Data **)&_datPtr, _size);                  \
69    if(_ret == ROK)                                              \
70       cmMemset((U8*)_datPtr, 0, _size);                         \
71    else                                                         \
72       _datPtr = NULLP;                                          \
73 }
74
75 /* free a static buffer */
76 #define CU_FREE(_datPtr, _size)                                 \
77    if(_datPtr)                                                  \
78       SPutSBuf(CU_APP_MEM_REG, CU_POOL,                      \
79          (Data *)_datPtr, _size);
80
81
82 typedef struct f1apDb
83 {
84    OCTET_STRING_t duToCuContainer;
85 }F1apMsgDb;
86   
87 F1apMsgDb f1apMsgDb;
88 void F1APMsgHdlr(Buffer *mBuf);
89
90 /**********************************************************************
91          End of file
92 **********************************************************************/