X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=src%2F5gnrsch%2Fsch_msg_router.c;h=4cbd9581eee38c257551eaf3482ded3a2c696cad;hb=2e3617064e27b8d7bb5ba74319f8c1c99491b8dd;hp=ca15f65b8a7199679a93900f27081a03cfbe1791;hpb=f73456bd55152c329601f8286ae67fe9875025bc;p=o-du%2Fl2.git diff --git a/src/5gnrsch/sch_msg_router.c b/src/5gnrsch/sch_msg_router.c index ca15f65b8..4cbd9581e 100755 --- a/src/5gnrsch/sch_msg_router.c +++ b/src/5gnrsch/sch_msg_router.c @@ -249,6 +249,16 @@ void callFlowSchMsgRouter(Pst *pst) strcpy(message,"EVENT_STATISTICS_REQ_TO_SCH"); break; } + case EVENT_STATISTICS_DELETE_REQ_TO_SCH: + { + strcpy(message,"EVENT_STATISTICS_DELETE_REQ_TO_SCH"); + break; + } + case EVENT_STATISTICS_MODIFY_REQ_TO_SCH: + { + strcpy(message,"EVENT_STATISTICS_MODIFY_REQ_TO_SCH"); + break; + } default: strcpy(message,"Invalid Event"); break; @@ -376,6 +386,16 @@ uint8_t SchMessageRouter(Pst *pst, void *msg) SchProcStatsReq(pst, (SchStatsReq *)msg); break; } + case EVENT_STATISTICS_DELETE_REQ_TO_SCH: + { + SchProcStatsDeleteReq(pst, (SchStatsDeleteReq *)msg); + break; + } + case EVENT_STATISTICS_MODIFY_REQ_TO_SCH: + { + SchProcStatsModificationReq(pst, (SchStatsModificationReq *)msg); + break; + } default: { DU_LOG("\nERROR --> SCH : SchMessageRouter(): Invalid event [%d] received", pst->event);