This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
daniel gerrit-no-reply at lists.osmocom.orgdaniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/21270 )
Change subject: Add templates for FLUSH_LL
......................................................................
Add templates for FLUSH_LL
Change-Id: Id432022fdd7f96bc014f0fd81658fa4aa796a688
Related: SYS#5210
---
M library/Osmocom_Gb_Types.ttcn
1 file changed, 42 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/70/21270/1
diff --git a/library/Osmocom_Gb_Types.ttcn b/library/Osmocom_Gb_Types.ttcn
index 2c82437..5014b5c 100644
--- a/library/Osmocom_Gb_Types.ttcn
+++ b/library/Osmocom_Gb_Types.ttcn
@@ -777,6 +777,24 @@
unstructured_value := f_oct_or_wc(bvci, 2)
}
+ template (value) NSEI_BSSGP ts_BSSGP_NSEI(template (value) Nsei nsei) := {
+ iEI:= '3E'O,
+ ext := '1'B,
+ lengthIndicator := {
+ length1 := 2
+ },
+ nSEI := f_oct_or_wc(nsei, 2)
+ }
+
+ template NSEI_BSSGP tr_BSSGP_NSEI(template Nsei nsei) := {
+ iEI:= '3E'O,
+ ext := '1'B,
+ lengthIndicator := {
+ length1 := 2
+ },
+ nSEI := f_oct_or_wc(nsei, 2)
+ }
+
template (value) TLLI_BSSGP ts_BSSGP_TLLI(template (value) GprsTlli tlli) := {
iEI := '1F'O,
ext := '1'B,
@@ -1683,6 +1701,30 @@
}
}
+ /* 10.4.1 */
+ template (value) PDU_BSSGP ts_BSSGP_FLUSH_LL(GprsTlli tlli, template (value) BssgpBvci bvci_old,
+ template (omit) BssgpBvci bvci_new,
+ template (omit) Nsei nsei) := {
+ pDU_BSSGP_FLUSH_LL := {
+ bssgpPduType := '2A'O,
+ tLLI := ts_BSSGP_TLLI(tlli),
+ bVCI_old := t_BSSGP_BVCI(bvci_old),
+ bVCI_new := omit,
+ nSEI := omit
+ }
+ }
+ template PDU_BSSGP tr_BSSGP_FLUSH_LL(template GprsTlli tlli, template BssgpBvci bvci_old,
+ template (omit) BssgpBvci bvci_new,
+ template (omit) Nsei nsei) := {
+ pDU_BSSGP_FLUSH_LL := {
+ bssgpPduType := '2A'O,
+ tLLI := tr_BSSGP_TLLI(tlli),
+ bVCI_old := t_BSSGP_BVCI(bvci_old),
+ bVCI_new := t_BSSGP_BVCI(bvci_new),
+ nSEI := ?
+ }
+ }
+
/* 10.2.3 */
template (value) PDU_BSSGP ts_BSSGP_RA_CAP(GprsTlli tlli,
template (omit) MSRadioAccessCapabilityV_BSSGP racap := omit) := {
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/21270
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Id432022fdd7f96bc014f0fd81658fa4aa796a688
Gerrit-Change-Number: 21270
Gerrit-PatchSet: 1
Gerrit-Owner: daniel <dwillmann at sysmocom.de>
Gerrit-MessageType: newchange
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20201120/7be4fc67/attachment.htm>