jolly has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42774?usp=email )
Change subject: NGAP: Add UESecurityCapabilities IE to PathSwitchRequestAcknowledge ...................................................................... NGAP: Add UESecurityCapabilities IE to PathSwitchRequestAcknowledge This IE is now used by Open5GS, so add it to the receive template. This fixes C5G_Tests.TC_handover_inter_ngran_xn. Note that there is also a pull request to fix the location of this IE in Open5GS. (https://github.com/open5gs/open5gs/pull/4589) Without this fix the test case will fail. Change-Id: Ic46f201db3dcf84a7d62fb1cd17c839ef540e8bb --- M library/ngap/NGAP_Templates.ttcn 1 file changed, 6 insertions(+), 0 deletions(-) Approvals: pespin: Looks good to me, but someone else must approve fixeria: Looks good to me, approved Jenkins Builder: Verified diff --git a/library/ngap/NGAP_Templates.ttcn b/library/ngap/NGAP_Templates.ttcn index c688a3c..ac351b0 100644 --- a/library/ngap/NGAP_Templates.ttcn +++ b/library/ngap/NGAP_Templates.ttcn @@ -5058,6 +5058,7 @@ template (present) SuccessfulOutcome mw_n2_PathSwitchRequestAcknowledge( template (present) AMF_UE_NGAP_ID p_amfUeNgapID := ?, template (present) RAN_UE_NGAP_ID p_ranUeNgapID := ?, + template (present) UESecurityCapabilities p_uESecurityCapabilities := ?, template (present) SecurityContext p_securityContext := ?, template (present) PDUSessionResourceSwitchedList p_pDUSessionResourceSwitchedList := ?, template (present) AllowedNSSAI p_allowedNSSAI := ? @@ -5078,6 +5079,11 @@ value_ := { RAN_UE_NGAP_ID := p_ranUeNgapID } }, { + id := id_UESecurityCapabilities, + criticality := reject, + value_ := { UESecurityCapabilities := p_uESecurityCapabilities } + }, + { id := id_SecurityContext, criticality := reject, value_ := { SecurityContext := p_securityContext } -- To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42774?usp=email To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings?usp=email Gerrit-MessageType: merged Gerrit-Project: osmo-ttcn3-hacks Gerrit-Branch: master Gerrit-Change-Id: Ic46f201db3dcf84a7d62fb1cd17c839ef540e8bb Gerrit-Change-Number: 42774 Gerrit-PatchSet: 1 Gerrit-Owner: jolly <[email protected]> Gerrit-Reviewer: Jenkins Builder Gerrit-Reviewer: fixeria <[email protected]> Gerrit-Reviewer: jolly <[email protected]> Gerrit-Reviewer: pespin <[email protected]>
