jolly has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33143 )
Change subject: Add RSL_Types for talker / listener detection ......................................................................
Add RSL_Types for talker / listener detection
Change-Id: Ibc936417fedf7dc663c6b7243090a91fc55c06a2 --- M library/RSL_Types.ttcn 1 file changed, 45 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/43/33143/1
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn index ceb6adb..a29d579 100644 --- a/library/RSL_Types.ttcn +++ b/library/RSL_Types.ttcn @@ -1995,6 +1995,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 */