Merge "Implementation of UE context release command JIRA ID = ODUHIGH-330"
[o-du/l2.git] / src / 5gnrmac / rg_ex_ms.c
index a4c422c..0319cc2 100755 (executable)
@@ -107,13 +107,13 @@ Buffer  *mBuf                       /* message buffer       */
          /* Process MAC cell config */
          unpackDuMacCellCfg(MacProcCellCfgReq, pst, mBuf);
          break;
-      case EVENT_MAC_CELL_START_REQ:
+      case EVENT_MAC_CELL_START:
         /* Process MAC cell start request */
-        unpackMacCellStartReq(MacProcCellStartReq, pst, mBuf);
+        unpackMacCellStart(MacProcCellStart, pst, mBuf);
         break;
-      case EVENT_MAC_CELL_STOP_REQ:
+      case EVENT_MAC_CELL_STOP:
         /* Process MAC cell stop request */
-        unpackMacCellStopReq(MacProcCellStopReq, pst, mBuf);
+        unpackMacCellStop(MacProcCellStop, pst, mBuf);
         break;
       case EVENT_MAC_DL_CCCH_IND:
         /* Process DL CCCH Ind */
@@ -127,7 +127,12 @@ Buffer  *mBuf                       /* message buffer       */
         /* Process Ue Reconfig Request */
         unpackMacUeReconfigReq(MacProcUeReconfigReq, pst, mBuf);
         break;
-      default:
+    case EVENT_MAC_UE_DELETE_REQ:
+    {
+       unpackMacUeDeleteReq(MacProcUeDeleteReq, pst, mBuf);
+       break;
+    }
+    default:
          RG_FREE_MSG(mBuf);
          break;
    }