jolly has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/37059?usp=email )
Change subject: Add receive template for RSL_MT_SACCH_INFO_MODIFY ......................................................................
Add receive template for RSL_MT_SACCH_INFO_MODIFY
This template is required for ASCI tests, as ASCI uses it to set system information type 10 at the BTS.
Change-Id: I387200daf58ef125dacf3e642fcaf4cb3e5f7d62 --- M library/RSL_Types.ttcn 1 file changed, 23 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/59/37059/1
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn index fa1d928..1940b09 100644 --- a/library/RSL_Types.ttcn +++ b/library/RSL_Types.ttcn @@ -2017,6 +2017,17 @@ t_RSL_IE(RSL_IE_L3_INFO, RSL_IE_Body:{l3_info := ts_RSL_L16V(l3_info)}) } } + template RSL_Message tr_RSL_SACCH_INF_MOD(template RslChannelNr chan_nr, + template RSL_IE_SysinfoType si_type := ?, + template octetstring l3_info := ?) := { + msg_disc := tr_RSL_MsgDisc(RSL_MDISC_DCHAN, false), + msg_type := RSL_MT_SACCH_INFO_MODIFY, + ies := { + tr_RSL_IE(RSL_IE_Body:{chan_nr := chan_nr}), + tr_RSL_IE(RSL_IE_Body:{sysinfo_type := si_type}), + tr_RSL_IE(RSL_IE_Body:{l3_info := tr_RSL_L16V(l3_info)}) + } + }
/* 8.4.7 BTS -> BSC */ template (value) RSL_Message ts_RSL_HANDO_DET(template (value) RslChannelNr chan_nr) := {