Skip to content

Commit

Permalink
fix(mme): Fixing the criticality of the HandoverCancelAcknowledge and…
Browse files Browse the repository at this point in the history
… PathSwitchRequestAcknowlidge (magma#15337)

Signed-off-by: Sathyaj27 <[email protected]>
  • Loading branch information
Sathyaj27 authored Nov 9, 2023
1 parent 7909a89 commit 2bd75a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lte/gateway/c/core/oai/tasks/s1ap/s1ap_mme_handlers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2485,7 +2485,7 @@ status_code_e s1ap_mme_handle_handover_cancel(oai::S1apState* state,
S1ap_ProcedureCode_id_HandoverCancel;
out_pdu.choice.successfulOutcome.value.present =
S1ap_SuccessfulOutcome__value_PR_HandoverCancelAcknowledge;
out_pdu.choice.successfulOutcome.criticality = S1ap_Criticality_ignore;
out_pdu.choice.successfulOutcome.criticality = S1ap_Criticality_reject;
out =
&out_pdu.choice.successfulOutcome.value.choice.HandoverCancelAcknowledge;

Expand Down Expand Up @@ -5103,7 +5103,7 @@ status_code_e s1ap_handle_path_switch_req_ack(
pdu.present = S1ap_S1AP_PDU_PR_successfulOutcome;
pdu.choice.initiatingMessage.procedureCode =
S1ap_ProcedureCode_id_PathSwitchRequest;
pdu.choice.successfulOutcome.criticality = S1ap_Criticality_ignore;
pdu.choice.successfulOutcome.criticality = S1ap_Criticality_reject;
pdu.choice.successfulOutcome.value.present =
S1ap_SuccessfulOutcome__value_PR_PathSwitchRequestAcknowledge;
out = &pdu.choice.successfulOutcome.value.choice.PathSwitchRequestAcknowledge;
Expand Down

0 comments on commit 2bd75a2

Please sign in to comment.