pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/42316?usp=email )
Change subject: NGAP_Templates: Add missing IE TargetToSource_TransparentContainer to HandoverRequestAcknowledge ......................................................................
NGAP_Templates: Add missing IE TargetToSource_TransparentContainer to HandoverRequestAcknowledge
Change-Id: I19b0b718021326a64fe3bf1b3508a769a453557d --- M library/ngap/NGAP_Templates.ttcn 1 file changed, 14 insertions(+), 2 deletions(-)
Approvals: laforge: Looks good to me, but someone else must approve osmith: Looks good to me, approved Jenkins Builder: Verified
diff --git a/library/ngap/NGAP_Templates.ttcn b/library/ngap/NGAP_Templates.ttcn index e5752ce..46e55bf 100644 --- a/library/ngap/NGAP_Templates.ttcn +++ b/library/ngap/NGAP_Templates.ttcn @@ -4733,7 +4733,8 @@ template (value) SuccessfulOutcome m_n2_HandoverRequestAcknowledge( 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) PDUSessionResourceAdmittedList p_pDUSessionResourceAdmittedList + in template (value) PDUSessionResourceAdmittedList p_pDUSessionResourceAdmittedList, + in template (value) TargetToSource_TransparentContainer p_TargetToSource_TransparentContainer ) := { procedureCode := id_HandoverResourceAllocation, criticality := reject, @@ -4754,6 +4755,11 @@ id := id_PDUSessionResourceAdmittedList, criticality := ignore, value_ := { PDUSessionResourceAdmittedList := p_pDUSessionResourceAdmittedList } + }, + { + id := id_TargetToSource_TransparentContainer, + criticality := reject, + value_ := { TargetToSource_TransparentContainer := p_TargetToSource_TransparentContainer } } } } @@ -4770,7 +4776,8 @@ template (present) SuccessfulOutcome mw_n2_HandoverRequestAcknowledge( template (present) AMF_UE_NGAP_ID p_amfUeNgapID := ?, template (present) RAN_UE_NGAP_ID p_ranUeNgapID := ?, - template (present) PDUSessionResourceAdmittedList p_pDUSessionResourceAdmittedList := ? + template (present) PDUSessionResourceAdmittedList p_pDUSessionResourceAdmittedList := ?, + template (present) TargetToSource_TransparentContainer p_TargetToSource_TransparentContainer := ? ) := { procedureCode := id_HandoverResourceAllocation, criticality := reject, @@ -4791,6 +4798,11 @@ id := id_PDUSessionResourceAdmittedList, criticality := ignore, value_ := { PDUSessionResourceAdmittedList := p_pDUSessionResourceAdmittedList } + }, + { + id := id_TargetToSource_TransparentContainer, + criticality := reject, + value_ := { TargetToSource_TransparentContainer := p_TargetToSource_TransparentContainer } } } }