jolly has uploaded this change for review.

View Change

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(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/74/42774/1
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 change 42774. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ic46f201db3dcf84a7d62fb1cd17c839ef540e8bb
Gerrit-Change-Number: 42774
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <andreas@eversberg.eu>