laforge has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33143
)
Change subject: Add templates for talker / listener detection to RSL_Types
......................................................................
Add templates for talker / listener detection to RSL_Types
Change-Id: Ibc936417fedf7dc663c6b7243090a91fc55c06a2
---
M library/RSL_Types.ttcn
1 file changed, 45 insertions(+), 0 deletions(-)
Approvals:
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
laforge: Looks good to me, approved
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index 08e49b5..64025a5 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -2036,6 +2036,42 @@
}
}
+ /* 8.4.21 BTS -> BSC */
+ template (value) RSL_Message ts_RSL_TALKER_DET(template (value) RslChannelNr chan_nr) :=
{
+ msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
+ msg_type := RSL_MT_TALKER_DET,
+ ies := {
+ t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
+ }
+ }
+ template RSL_Message tr_RSL_TALKER_DET(template RslChannelNr chan_nr,
+ template uint8_t acc_delay := ?) := {
+ msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
+ msg_type := RSL_MT_TALKER_DET,
+ ies := {
+ tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
+ tr_RSL_IE(RSL_IE_Body:{access_delay := acc_delay})
+ }
+ }
+
+ /* 8.4.22 BTS -> BSC */
+ template (value) RSL_Message ts_RSL_LISTENER_DET(template (value) RslChannelNr chan_nr)
:= {
+ msg_disc := ts_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
+ msg_type := RSL_MT_LISTENER_DET,
+ ies := {
+ t_RSL_IE(RSL_IE_CHAN_NR, RSL_IE_Body:{chan_nr := chan_nr})
+ }
+ }
+ template RSL_Message tr_RSL_LISTENER_DET(template RslChannelNr chan_nr,
+ template uint8_t acc_delay := ?) := {
+ msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false),
+ msg_type := RSL_MT_LISTENER_DET,
+ ies := {
+ tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}),
+ tr_RSL_IE(RSL_IE_Body:{access_delay := acc_delay})
+ }
+ }
+
/* COMMON CHANNEL MANAGEMENT MESSAGES */
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33143
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: Ibc936417fedf7dc663c6b7243090a91fc55c06a2
Gerrit-Change-Number: 33143
Gerrit-PatchSet: 3
Gerrit-Owner: jolly <andreas(a)eversberg.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged