pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40889?usp=email )
Change subject: ngap: Add missing mandatory IE Cause to m_n2_UEContextReleaseRequest
......................................................................
ngap: Add missing mandatory IE Cause to m_n2_UEContextReleaseRequest
Change-Id: Ib7d87f957e469a23448e35fd82a697d1698c7da7
---
M library/ngap/NGAP_Templates.ttcn
1 file changed, 7 insertions(+), 1 deletion(-)
Approvals:
laforge: Looks good to me, approved
fixeria: Looks good to me, but someone else must approve
Jenkins Builder: Verified
diff --git a/library/ngap/NGAP_Templates.ttcn b/library/ngap/NGAP_Templates.ttcn
index 3dec8ef..d6e0bd8 100644
--- a/library/ngap/NGAP_Templates.ttcn
+++ b/library/ngap/NGAP_Templates.ttcn
@@ -1772,7 +1772,8 @@
template (value) InitiatingMessage m_n2_UEContextReleaseRequest(
in template (value) AMF_UE_NGAP_ID p_amfUeNgapID := PX_AMF_UE_NGAP_ID,
in template (value) RAN_UE_NGAP_ID p_ranUeNgapID := PX_RAN_UE_NGAP_ID,
-
in template (value) PDUSessionResourceListCxtRelReq p_pDUSessionResourceListCxtRelReq
+
in template (value) PDUSessionResourceListCxtRelReq p_pDUSessionResourceListCxtRelReq,
+
in template (value) Cause p_cause
)
:= {
procedureCode := id_UEContextReleaseRequest,
criticality := ignore,
@@ -1793,6 +1794,11 @@
id := id_PDUSessionResourceListCxtRelReq,
criticality := reject,
value_ := { PDUSessionResourceListCxtRelReq := p_pDUSessionResourceListCxtRelReq }
+
},
+
{
+
id := id_Cause,
+
criticality := ignore,
+
value_ := { Cause := p_cause }
}
}
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40889?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: Ib7d87f957e469a23448e35fd82a697d1698c7da7
Gerrit-Change-Number: 40889
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>