X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcu_stub%2Fcu_stub.c;h=ff9da8e9021f25db022aa449d9edec598593ebeb;hb=287632f09119435e0bf1ea16e4e11fc6447c1eee;hp=ebaade2fac2a6948521c0e2c2b963c30d4becfca;hpb=834004e09017b5b86cb738be98a7a1be79c0a9b0;p=o-du%2Fl2.git diff --git a/src/cu_stub/cu_stub.c b/src/cu_stub/cu_stub.c index ebaade2fa..ff9da8e90 100644 --- a/src/cu_stub/cu_stub.c +++ b/src/cu_stub/cu_stub.c @@ -24,9 +24,7 @@ #include "du_log.h" #ifdef O1_ENABLE - -#include "Config.h" - +#include "ConfigInterface.h" #endif #define CU_ID 1 @@ -167,13 +165,13 @@ void readCuCfg() DU_LOG("\nDEBUG --> CU_STUB : Reading CU configurations"); #ifdef O1_ENABLE - if( getStartupConfig(&g_cfg) != ROK ) + if( getStartupConfigForStub(&g_cfg) != ROK ) { - RETVALUE(RFAILED); + DU_LOG("\nError --> CU_STUB : Could not fetch startup "\ + "configurations from Netconf interface\n"); + exit(1); } - DU_LOG("\nReading CU configurations---"); - DU_LOG("\nReading CU configurations g_cfg.DU_IPV4_Addr=%s", g_cfg.DU_IPV4_Addr); - DU_LOG("\nReading CU configurations g_cfg.CU_IPV4_Addr=%s", g_cfg.CU_IPV4_Addr); + cmInetAddr((S8*)g_cfg.DU_IPV4_Addr, &ipv4_du); cmInetAddr((S8*)g_cfg.CU_IPV4_Addr, &ipv4_cu); @@ -218,6 +216,7 @@ void readCuCfg() cuCfgParams.egtpParams.destIp.ipV4Addr = ipv4_du; cuCfgParams.egtpParams.destPort = DU_EGTP_PORT; cuCfgParams.egtpParams.minTunnelId = 0; + cuCfgParams.egtpParams.currTunnelId = cuCfgParams.egtpParams.minTunnelId; cuCfgParams.egtpParams.maxTunnelId = 10; } /* End of readCuCfg */