X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2Fcu_stub%2Fcu_stub.c;h=a94f24cda45b7b1e8db34bde5f4d4ff2577b175b;hb=ec3126edc859f70045642c4fee472943a5108d11;hp=c9a8daa89add3311f3fc9cae956f50a182de9dfa;hpb=4d45b914f9e94203603d3b9fdbcb1aad361301dd;p=o-du%2Fl2.git diff --git a/src/cu_stub/cu_stub.c b/src/cu_stub/cu_stub.c index c9a8daa89..a94f24cda 100644 --- a/src/cu_stub/cu_stub.c +++ b/src/cu_stub/cu_stub.c @@ -64,7 +64,7 @@ void sctpNtfyInd(CmInetSctpNotification *ntfy) void init_log() { - openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1); + openlog("CU_STUB",LOG_CONS | LOG_PID | LOG_NDELAY, LOG_LOCAL1); } /******************************************************************* * @@ -87,8 +87,25 @@ void init_log() uint8_t tst() { + int retVal=0; + pthread_t conThrdId; + pthread_attr_t attr; + init_log(); - DU_LOG("\nStarting CU_STUB"); + DU_LOG("\nINFO --> CU_STUB : Starting CU_STUB\n"); + + /* Start thread to receive console input */ + pthread_attr_init(&attr); + pthread_attr_setstacksize(&attr, (size_t)NULLD); + pthread_attr_setscope(&attr, PTHREAD_SCOPE_SYSTEM); + pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); + retVal = pthread_create(&conThrdId, &attr, cuConsoleHandler, NULLP); + if(retVal != 0) + { + DU_LOG("\nERROR --> CU_STUB : Thread creation failed. Cause %d", retVal); + } + pthread_attr_destroy(&attr); + /* Read CU configurations */ readCuCfg(); @@ -125,13 +142,12 @@ uint8_t tst() void readCuCfg() { - U32 ipv4_du, ipv4_cu; + uint32_t ipv4_du, ipv4_cu; - DU_LOG("\nReading CU configurations"); + DU_LOG("\nDEBUG --> CU_STUB : Reading CU configurations"); cmInetAddr((S8*)DU_IP_V4_ADDR, &ipv4_du); cmInetAddr((S8*)CU_IP_V4_ADDR, &ipv4_cu); - //U32 ipv6_int = inet_addr(DU_IP_V6_ADDR); cuCfgParams.cuId = CU_ID; strcpy(cuCfgParams.cuName, CU_NAME); @@ -170,6 +186,36 @@ void readCuCfg() cuCfgParams.egtpParams.maxTunnelId = 10; } /* End of readCuCfg */ + +/******************************************************************* + * + * @brief Handles Console input + * + * @details + * + * Function : cuConsoleHandler + * + * Functionality: Handles Console input + * + * @params[in] + * @return ROK - success + * RFAILED - failure + * + * ****************************************************************/ +void *cuConsoleHandler(void *args) +{ + char ch; + while(true) + { + /* Send DL user data to CU when user enters 'd' on console */ + if((ch = getchar()) == 'd') + { + /* Start Pumping data from CU to DU */ + DU_LOG("\nDEBUG --> EGTP: Sending DL User Data"); + cuEgtpDatReq(); + } + } +} /********************************************************************** End of file **********************************************************************/