fixeria has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38277?usp=email )
Change subject: library/s1ap: comment out optional IE in tr_S1AP_InitialCtxSetupResp ......................................................................
library/s1ap: comment out optional IE in tr_S1AP_InitialCtxSetupResp
Change-Id: I4765036be69ff10adb8c510d4092834c4e923229 --- M library/s1ap/S1AP_Templates.ttcn 1 file changed, 9 insertions(+), 6 deletions(-)
Approvals: pespin: Looks good to me, but someone else must approve Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve fixeria: Looks good to me, approved
diff --git a/library/s1ap/S1AP_Templates.ttcn b/library/s1ap/S1AP_Templates.ttcn index 0079649..5425fb1 100644 --- a/library/s1ap/S1AP_Templates.ttcn +++ b/library/s1ap/S1AP_Templates.ttcn @@ -710,7 +710,7 @@ ts_S1AP_InitialCtxSetupResp(template (value) MME_UE_S1AP_ID mme_id, template (value) ENB_UE_S1AP_ID enb_id, template (value) E_RABSetupListCtxtSURes rab_setup_items - /*OPTIONAL: template (value) E_RABList rab_items */ + /* OPTIONAL: template (omit) E_RABList rab_failed_items */ ) := { successfulOutcome := { procedureCode := id_InitialContextSetup, @@ -734,7 +734,7 @@ /*, { id := S1AP_Constants.id_E_RABFailedToSetupListCtxtSURes, criticality := ignore, - value_ := {E_RABList := rab_items} + value_ := {E_RABList := rab_failed_items} }*/ } } @@ -744,8 +744,9 @@ template (present) S1AP_PDU tr_S1AP_InitialCtxSetupResp(template (present) MME_UE_S1AP_ID mme_id := ?, template (present) ENB_UE_S1AP_ID enb_id := ?, - template (present) E_RABSetupListCtxtSURes rab_setup_items := ?, - template (present) E_RABList rab_items := ?) := { + template (present) E_RABSetupListCtxtSURes rab_setup_items := ? + /* OPTIONAL: template E_RABList rab_failed_items := * */ + ) := { successfulOutcome := { procedureCode := id_InitialContextSetup, criticality := reject, @@ -764,11 +765,13 @@ id := S1AP_Constants.id_E_RABSetupListCtxtSURes, criticality := ignore, value_ := {E_RABSetupListCtxtSURes := rab_setup_items} - }, { + }, + /*, { id := S1AP_Constants.id_E_RABFailedToSetupListCtxtSURes, criticality := ignore, value_ := {E_RABList := rab_items} - }, * + }, */ + * } } }