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/.
Harald Welte gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/6533
Osmocom_Gb_Types: Add ts_BSSGP_UL_UD and tr_BSSGP_PS_PAGING
Change-Id: I0504ee9137eef08c2ab0c710d1b57b2c19bf0db8
---
M library/Osmocom_Gb_Types.ttcn
1 file changed, 35 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/33/6533/1
diff --git a/library/Osmocom_Gb_Types.ttcn b/library/Osmocom_Gb_Types.ttcn
index 641e562..e94eadc 100644
--- a/library/Osmocom_Gb_Types.ttcn
+++ b/library/Osmocom_Gb_Types.ttcn
@@ -608,6 +608,25 @@
}
}
+ template PDU_BSSGP ts_BSSGP_UL_UD(OCT4 tlli, BssgpCellId cell_id, octetstring payload) := {
+ pDU_BSSGP_UL_UNITDATA := {
+ bssgpPduType := '01'O,
+ tLLI := tlli,
+ qoS_Profile := t_defaultQos,
+ cell_Identifier := t_BSSGP_IE_CellId(cell_id),
+ pFI := omit,
+ lSA_Identifier_List := omit,
+ redirect_Attempt_Flag := omit,
+ iMSI_BSSGP := omit,
+ unconfirmed_Send_State_Variable := omit,
+ selected_PLMN_ID := omit,
+ selected_Operator := omit,
+ cS_Registered_Operator := omit,
+ alignment_octets := omit,
+ lLC_PDU := ts_BSSGP_LLC_PDU(payload)
+ }
+ }
+
template PDU_BSSGP tr_BSSGP_UL_UD(template GprsTlli tlli := ?, template BssgpCellId cell_id := ?,
template octetstring payload := ?) := {
pDU_BSSGP_UL_UNITDATA := {
@@ -628,6 +647,22 @@
}
}
+ template PDU_BSSGP tr_BSSGP_PS_PAGING(BssgpBvci bvci) := {
+ pDU_BSSGP_PAGING_PS := {
+ bssgpPduType := '06'O,
+ iMSI := ?,
+ dRX_Parameters := *,
+ paging_Field4 := {
+ bVCI := t_BSSGP_BVCI(bvci)
+ },
+ pFI := *,
+ aBQP := *,
+ qoS_Profile := ?,
+ pTMSI := *,
+ eDRX_Paremeters := *
+ }
+ }
+
template PDU_BSSGP ts_BSSGP_PS_PAGING_IMSI(BssgpBvci bvci, hexstring imsi) := {
pDU_BSSGP_PAGING_PS := {
bssgpPduType := '06'O,
--
To view, visit https://gerrit.osmocom.org/6533
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I0504ee9137eef08c2ab0c710d1b57b2c19bf0db8
Gerrit-PatchSet: 1
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Owner: Harald Welte <laforge at gnumonks.org>