From: Abdul Wahid W Date: Fri, 5 Jan 2024 10:06:14 +0000 (+0530) Subject: RIC-1024:Updated xapp-frame to define new message type for RIC_E2_RAN_ERROR_INDICATION X-Git-Tag: v0.9.22^0 X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=commitdiff_plain;h=9c523a68520e552d051ca922815aa936c8611894;p=ric-plt%2Fxapp-frame.git RIC-1024:Updated xapp-frame to define new message type for RIC_E2_RAN_ERROR_INDICATION Change-Id: I5ca2c43967eb5cd7a11229998a2bc2ae5e8cacc9 Signed-off-by: Abdul Wahid W --- diff --git a/pkg/xapp/mtypes.go b/pkg/xapp/mtypes.go index 30b26dd..501c1fd 100644 --- a/pkg/xapp/mtypes.go +++ b/pkg/xapp/mtypes.go @@ -122,6 +122,7 @@ var RICMessageTypes = map[string]int{ "MC_REPORT": C.MC_REPORT, "DCAPTERM_RTPM_RMR_MSGTYPE": C.DCAPTERM_RTPM_RMR_MSGTYPE, "DCAPTERM_GEO_RMR_MSGTYPE": C.DCAPTERM_GEO_RMR_MSGTYPE, + "RIC_E2_RAN_ERROR_INDICATION": C.RIC_E2_RAN_ERROR_INDICATION, } //----------------------------------------------------------------------------- @@ -222,6 +223,7 @@ const ( MC_REPORT = C.MC_REPORT DCAPTERM_RTPM_RMR_MSGTYPE = C.DCAPTERM_RTPM_RMR_MSGTYPE DCAPTERM_GEO_RMR_MSGTYPE = C.DCAPTERM_GEO_RMR_MSGTYPE + RIC_E2_RAN_ERROR_INDICATION = C.RIC_E2_RAN_ERROR_INDICATION ) //----------------------------------------------------------------------------- @@ -322,4 +324,5 @@ var RicMessageTypeToName = map[int]string{ MC_REPORT: "MC_REPORT", DCAPTERM_RTPM_RMR_MSGTYPE: "DCAPTERM_RTPM_RMR_MSGTYPE", DCAPTERM_GEO_RMR_MSGTYPE: "DCAPTERM_GEO_RMR_MSGTYPE", + RIC_E2_RAN_ERROR_INDICATION: "RIC_E2_RAN_ERROR_INDICATION", }