X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=inline;f=src%2F5gnrsch%2Fsch_msg_router.c;h=4cbd9581eee38c257551eaf3482ded3a2c696cad;hb=343c8e8a51dcd313d21310887af0d77023c2af0f;hp=bad7ceac075b9a3e35b70ad037d8c9bc8fa4ffea;hpb=6dc8a4c17da24847b3a3aee91b37151f77a8a5bc;p=o-du%2Fl2.git diff --git a/src/5gnrsch/sch_msg_router.c b/src/5gnrsch/sch_msg_router.c index bad7ceac0..4cbd9581e 100755 --- a/src/5gnrsch/sch_msg_router.c +++ b/src/5gnrsch/sch_msg_router.c @@ -254,6 +254,11 @@ void callFlowSchMsgRouter(Pst *pst) 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; @@ -386,6 +391,11 @@ uint8_t SchMessageRouter(Pst *pst, void *msg) 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);