Change in osmo-ttcn3-hacks[master]: Add templates for LLC_DISCARDED

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.org
Tue Nov 24 17:38:55 UTC 2020


daniel has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/21323 )


Change subject: Add templates for LLC_DISCARDED
......................................................................

Add templates for LLC_DISCARDED

Change-Id: I587ec89471083e339065f6371ffe6253d49007bf
Related: SYS#5210
---
M library/Osmocom_Gb_Types.ttcn
1 file changed, 57 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/23/21323/1

diff --git a/library/Osmocom_Gb_Types.ttcn b/library/Osmocom_Gb_Types.ttcn
index 1628f3a..30eb09f 100644
--- a/library/Osmocom_Gb_Types.ttcn
+++ b/library/Osmocom_Gb_Types.ttcn
@@ -161,6 +161,17 @@
 		return int2oct(valueof(inp), len);
 	}
 
+	private function f_hex_or_wc(template integer inp, integer len) return template hexstring {
+		if (istemplatekind(inp, "omit")) {
+			return omit;
+		} else if (istemplatekind(inp, "*")) {
+			return *;
+		} else if (istemplatekind(inp, "?")) {
+			return ?;
+		}
+		return int2hex(valueof(inp), len);
+	}
+
 	template (value) NS_VCI ts_NS_IE_NSVCI(Nsvci nsvci) := {
 		iEI := '01'O,
 		ext := '1'B,
@@ -806,6 +817,26 @@
 		}
 	}
 
+	private function t_LLC_FRAMES_DISCARDED(template integer frames_discarded)
+	return template LLC_Frames_Discarded {
+		var template LLC_Frames_Discarded r;
+		if (istemplatekind(frames_discarded, "omit")) {
+			return omit;
+		} else if (istemplatekind(frames_discarded, "*")) {
+			return *;
+		} else {
+			r := {
+				iEI := '0F'O,
+				ext := '1'B,
+				lengthIndicator := {
+					length1 := 2
+				},
+				number_of_frames_discarded := f_hex_or_wc(frames_discarded, 2)
+			}
+			return r;
+		}
+	}
+
 	private function t_BSSGP_BVCI(template BssgpBvci bvci)
 	return template BVCI {
 		var template BVCI r;
@@ -1848,6 +1879,32 @@
 		}
 	}
 
+	/* 10.4.3 */
+	template (value) PDU_BSSGP ts_BSSGP_LLC_DISCARDED(GprsTlli tlli, template (value) integer frames_discarded,
+							 template (value) BssgpBvci bvci,
+							 template (value) integer oct_deleted) := {
+		pDU_BSSGP_LLC_DISCARDED := {
+			bssgpPduType := '2C'O,
+			tLLI := ts_BSSGP_TLLI(tlli),
+			lLC_Frames_Discarded := t_LLC_FRAMES_DISCARDED(frames_discarded),
+			bVCI := t_BSSGP_BVCI(bvci),
+			number_of_octets_deleted := t_NO_OCT_AFF(oct_deleted),
+			pFI := omit
+		}
+	}
+	template PDU_BSSGP tr_BSSGP_LLC_DISCARDED(template GprsTlli tlli, template integer frames_discarded,
+						 template BssgpBvci bvci,
+						 template integer oct_deleted) := {
+		pDU_BSSGP_LLC_DISCARDED := {
+			bssgpPduType := '2C'O,
+			tLLI := ts_BSSGP_TLLI(tlli),
+			lLC_Frames_Discarded := t_LLC_FRAMES_DISCARDED(frames_discarded),
+			bVCI := t_BSSGP_BVCI(bvci),
+			number_of_octets_deleted := t_NO_OCT_AFF(oct_deleted),
+			pFI := *
+		}
+	}
+
 	/* 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/+/21323
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: I587ec89471083e339065f6371ffe6253d49007bf
Gerrit-Change-Number: 21323
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/20201124/48fa3a88/attachment.htm>


More information about the gerrit-log mailing list