pespin has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/40365?usp=email )
Change subject: NGAP_Templates: Add missing rx template for NGSetupFailure with TimeToWait optional IE ......................................................................
NGAP_Templates: Add missing rx template for NGSetupFailure with TimeToWait optional IE
Change-Id: I241b83119e1fcf849895393ac1a1231368a85cbb --- M library/ngap/NGAP_Templates.ttcn 1 file changed, 24 insertions(+), 0 deletions(-)
Approvals: Jenkins Builder: Verified osmith: Looks good to me, but someone else must approve pespin: Looks good to me, approved fixeria: Looks good to me, but someone else must approve
diff --git a/library/ngap/NGAP_Templates.ttcn b/library/ngap/NGAP_Templates.ttcn index 592f2ae..b6be2d3 100644 --- a/library/ngap/NGAP_Templates.ttcn +++ b/library/ngap/NGAP_Templates.ttcn @@ -5983,6 +5983,30 @@ } } // End of template mw_n2_NGSetupFailure
+ template (present) UnsuccessfulOutcome mw_n2_NGSetupFailure_TimeToWait( + template (present) Cause p_cause := ?, + template (present) TimeToWait p_timeToWait := ? + ) := { + procedureCode := id_NGSetup, + criticality := reject, + value_ := { + NGSetupFailure := { + protocolIEs := { + { + id := id_Cause, + criticality := ignore, + value_ := { Cause := p_cause } + }, + { + id := id_TimeToWait, + criticality := ignore, + value_ := { TimeToWait := p_timeToWait } + } + } + } + } + } // End of template mw_n2_NGSetupFailure_TimeToWait + } // End of group Receive
} // End of group NG_SETUP_FAILURE