Merge "Implementation of function for filling k0 and k1 table [Issue-ID: ODUHIGH...
[o-du/l2.git] / src / cu_stub / cu_f1ap_msg_hdl.h
index 9ee9226..ba70927 100644 (file)
@@ -65,6 +65,7 @@
 #define UE_CONTEXT_SETUP_RSP 4
 #define SECURITY_MODE_COMPLETE 5
 #define RRC_RECONFIG 6
+#define UE_CONTEXT_MOD_REQ 7
 
 typedef struct f1apDb
 {
@@ -72,9 +73,18 @@ typedef struct f1apDb
    OCTET_STRING_t duToCuContainer;
 }F1apMsgDb;
   
-F1apMsgDb f1apMsgDb;
-void F1APMsgHdlr(Buffer *mBuf);
+typedef struct ueInfo
+{
+  uint8_t ueId;
+  F1apMsgDb f1apMsgDb;
+}UeCb;
 
+UeCb ueCb[MAX_NUM_UE];
+
+void F1APMsgHdlr(Buffer *mBuf);
+uint8_t BuildAndSendUeContextModificationReq(uint8_t ueId);
+uint8_t BuildAndSendUeContextReleaseCommand(uint8_t cuUeF1apId, uint8_t duUeF1apId);
+uint8_t BuildAndSendF1ResetReq();
 /**********************************************************************
          End of file
 **********************************************************************/