566f070186905a93e23729d978a001541b8e0994
[o-du/l2.git] / src / ric_stub / ric_stub.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 #ifndef __RIC_MGR_MAIN_H__
20 #define __RIC_MGR_MAIN_H__
21
22 #define MAX_IPV6_LEN 16
23 #define RIC_DU_NAME_LEN_MAX 30      /* Max length of RIC/DU name string */
24
25 #define RIC_APP_MEM_REG 1
26 #define RIC_POOL 1
27
28 /* allocate and zero out a static buffer */
29 #define RIC_ALLOC(_datPtr, _size)                                \
30 {                                                               \
31    S16 _ret;                                                    \
32    _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL,                  \
33                      (Data **)&_datPtr, _size);                  \
34    if(_ret == ROK)                                              \
35       memset(_datPtr, 0, _size);                         \
36    else                                                         \
37       _datPtr = NULLP;                                          \
38 }
39  
40 /* free a static buffer */
41 #define RIC_FREE(_datPtr, _size)                                 \
42    SPutSBuf(RIC_APP_MEM_REG, RIC_POOL,                         \
43          (Data *)_datPtr, _size);
44
45 typedef struct ipAddr
46 {
47  bool ipV4Pres;
48  uint32_t  ipV4Addr;
49  bool ipV6Pres;
50  uint8_t   ipV6Addr[MAX_IPV6_LEN];
51 }SctpIpAddr;
52
53 typedef struct RicSctpParams
54 {
55    SctpIpAddr  duIpAddr;
56    uint16_t         duPort;
57    SctpIpAddr  ricIpAddr;
58    uint16_t         ricPort;
59 }RicSctpParams;
60
61 typedef struct ricCfgParams
62 {
63    uint32_t             ricId;
64    char            ricName[RIC_DU_NAME_LEN_MAX];
65    RicSctpParams   sctpParams;
66    Plmn            plmn;
67 }RicCfgParams;
68 RicCfgParams ricCfgParams; //global variable to hold all configs
69
70 void readRicCfg();
71 void cuAppInmsgHdlr(Buffer *mBuf);
72 void sctpNtfyInd(CmInetSctpNotification *ntfy);
73
74 #endif
75
76 /**********************************************************************
77          End of file
78 **********************************************************************/