1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
19 #ifndef __RIC_MGR_MAIN_H__
20 #define __RIC_MGR_MAIN_H__
23 #define RIC_NAME "ORAN_OAM_RIC"
25 #define DU_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0001"
26 #define RIC_IP_V6_ADDR "0000:0000:0000:0000:0000:0000:0000:0011"
29 #define DU_IP_V4_ADDR (char*[]){"192.168.130.81", "192.168.130.83"}
30 #define DU_SCTP_PORT (int[]){36421, 36422}
32 #define RIC_IP_V4_ADDR "192.168.130.80"
33 #define RIC_SCTP_PORT_TO_DU (int[]){36421, 36422}
45 #define RIC_DU_NAME_LEN_MAX 30 /* Max length of RIC/DU name string */
47 #define RIC_APP_MEM_REG 1
50 /* allocate and zero out a static buffer */
51 #define RIC_ALLOC(_datPtr, _size) \
54 _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL, \
55 (Data **)&_datPtr, _size); \
57 memset(_datPtr, 0, _size); \
62 /* free a static buffer */
63 #define RIC_FREE(_datPtr, _size) \
64 SPutSBuf(RIC_APP_MEM_REG, RIC_POOL, \
65 (Data *)_datPtr, _size);
67 typedef struct ricCfgParams
70 char ricName[RIC_DU_NAME_LEN_MAX];
71 RicSctpParams sctpParams;
75 RicCfgParams ricCfgParams; //global variable to hold all configs
78 void cuAppInmsgHdlr(Buffer *mBuf);
79 void sctpNtfyInd(CmInetSctpNotification *ntfy);
83 /**********************************************************************
85 **********************************************************************/