[Epic-ID: ODUHIGH-404][Task-ID: ODUHIGH-413] Modification of E2setup request and...
[o-du/l2.git] / src / ric_stub / ric_e2ap_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 E2AP message handler related functionality */
20
21 #define ENCODE_FAIL -1
22 #define TRANS_ID 1
23 #define RRC_SIZE 1
24 #define ENC_BUF_MAX_LEN 100
25 #define SUL_BAND_COUNT 0
26 #define UL_SRBID        1
27 #define DL_SRBID        0
28 #define DU_ID           1
29 #define RIC_ID           1
30 #define CRNTI           17017
31 #define CELL_INDEX      0
32
33 /* allocate and zero out a static buffer */
34 #define RIC_ALLOC(_datPtr, _size)                                \
35 {                                                               \
36    uint8_t _ret;                                                    \
37    _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL,                  \
38                     (Data **)&_datPtr, _size);                  \
39    if(_ret == ROK)                                              \
40       memset(_datPtr, 0, _size);                         \
41    else                                                         \
42       _datPtr = NULLP;                                          \
43 }
44
45 /* free a static buffer */
46 #define RIC_FREE(_datPtr, _size)                                 \
47    if(_datPtr)                                                  \
48       SPutSBuf(RIC_APP_MEM_REG, RIC_POOL,                      \
49          (Data *)_datPtr, _size);
50
51
52
53
54 void E2APMsgHdlr(Buffer *mBuf);
55 uint8_t BuildAndSendE2SetupRsp(uint8_t duId);
56 uint8_t SendE2APMsg(Region , Pool );
57
58 /**********************************************************************
59          End of file
60 **********************************************************************/