fixeria has uploaded this change for review. (
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(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/77/38277/1
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}
- }, *
+ }, */
+ *
}
}
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/38277?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I4765036be69ff10adb8c510d4092834c4e923229
Gerrit-Change-Number: 38277
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>