X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fric_stub%2Fric_stub.h;h=2b8fc45675ade2dabed59c9663b91175e8a9d5c4;hb=bb8df345963bb5ef2e035ead7731c1171e4cbbe0;hp=c48775894925dcca32d710a53e3ce70fe9ef555e;hpb=ef711b0830aedde36f4a1beceed146d08e77ce58;p=o-du%2Fl2.git diff --git a/src/ric_stub/ric_stub.h b/src/ric_stub/ric_stub.h index c48775894..2b8fc4567 100644 --- a/src/ric_stub/ric_stub.h +++ b/src/ric_stub/ric_stub.h @@ -16,8 +16,8 @@ ################################################################################ *******************************************************************************/ -#ifndef __CU_MGR_MAIN_H__ -#define __CU_MGR_MAIN_H__ +#ifndef __RIC_MGR_MAIN_H__ +#define __RIC_MGR_MAIN_H__ #include "stdio.h" @@ -47,6 +47,7 @@ #include "cm_inet.x" #include "cm_llist.x" /* Common link list defines */ #include "cm_hash.x" /* Common hashlist defines */ +#include "odu_common_codec.h" #include "du_log.h" #define MAX_IPV6_LEN 16 @@ -62,7 +63,7 @@ _ret = SGetSBuf(RIC_APP_MEM_REG, RIC_POOL, \ (Data **)&_datPtr, _size); \ if(_ret == ROK) \ - cmMemset((U8*)_datPtr, 0, _size); \ + cmMemset((uint8_t*)_datPtr, 0, _size); \ else \ _datPtr = NULLP; \ } @@ -74,42 +75,28 @@ typedef struct ipAddr { - Bool ipV4Pres; - U32 ipV4Addr; - Bool ipV6Pres; - U8 ipV6Addr[MAX_IPV6_LEN]; + bool ipV4Pres; + uint32_t ipV4Addr; + bool ipV6Pres; + uint8_t ipV6Addr[MAX_IPV6_LEN]; }SctpIpAddr; -typedef struct RrcVersion -{ - U8 rrcVer; /* Latest RRC Version */ - U32 extRrcVer; /* Latest RRC version extended */ -}RrcVersion; - -typedef struct sctpParamsRic +typedef struct RicSctpParams { SctpIpAddr duIpAddr; - U16 duPort; + uint16_t duPort; SctpIpAddr ricIpAddr; - U16 ricPort; -}SctpParamsRic; - -typedef struct fPLMN -{ - U8 mcc[3]; - U8 mnc[3]; -}Plmn; - + uint16_t ricPort; +}RicSctpParams; -typedef struct cuCfgParams +typedef struct ricCfgParams { - U32 cuId; - char cuName[RIC_DU_NAME_LEN_MAX]; - SctpParamsRic sctpParams; + uint32_t ricId; + char ricName[RIC_DU_NAME_LEN_MAX]; + RicSctpParams sctpParams; Plmn plmn; - RrcVersion rrcVersion; -}CuCfgParams; -CuCfgParams cuCfgParams; //global variable to hold all configs +}RicCfgParams; +RicCfgParams ricCfgParams; //global variable to hold all configs void readRicCfg(); void cuAppInmsgHdlr(Buffer *mBuf);