<p>fixeria has uploaded this change for <strong>review</strong>.</p><p><a href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19909">View Change</a></p><pre style="font-family: monospace,monospace; white-space: pre-wrap;">library/RSL_Types: add missing Channel Identification IE<br><br>Change-Id: I4698fd15a14ee55aa4004d80e65912531f78cf06<br>---<br>M library/RSL_Types.ttcn<br>1 file changed, 44 insertions(+), 0 deletions(-)<br><br></pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;">git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/09/19909/1</pre><pre style="font-family: monospace,monospace; white-space: pre-wrap;"><span>diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn</span><br><span>index af01c5d..05effa2 100644</span><br><span>--- a/library/RSL_Types.ttcn</span><br><span>+++ b/library/RSL_Types.ttcn</span><br><span>@@ -15,6 +15,7 @@</span><br><span> </span><br><span>    import from General_Types all;</span><br><span>       import from Osmocom_Types all;</span><br><span style="color: hsl(120, 100%, 40%);">+        import from GSM_RR_Types all;</span><br><span>        import from GSM_Types all;</span><br><span>   import from MobileL3_CommonIE_Types all;</span><br><span>     import from L3_Templates all;</span><br><span>@@ -319,6 +320,47 @@</span><br><span>                 a_bits := ACT_REL_TO_OSMO_PDCH</span><br><span>       }</span><br><span> </span><br><span style="color: hsl(120, 100%, 40%);">+ /* 9.3.5 */</span><br><span style="color: hsl(120, 100%, 40%);">+   type record RSL_IE_ChannelIdent {</span><br><span style="color: hsl(120, 100%, 40%);">+             uint8_t                 len,</span><br><span style="color: hsl(120, 100%, 40%);">+          /* 3GPP TS 44.018 Channel Description IE (TV) */</span><br><span style="color: hsl(120, 100%, 40%);">+              ChannelDescriptionTV    ch_desc,</span><br><span style="color: hsl(120, 100%, 40%);">+              /* 3GPP TS 44.018 Mobile Allocation IE (shall be empty) */</span><br><span style="color: hsl(120, 100%, 40%);">+            MobileAllocationTLV     ma</span><br><span style="color: hsl(120, 100%, 40%);">+    } with { variant (len) "LENGTHTO(ch_desc,ma)" };</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+  template (value) RSL_IE_ChannelIdent</span><br><span style="color: hsl(120, 100%, 40%);">+  ts_RSL_ChannelIdent(template (value) ChannelDescription ch_desc) := {</span><br><span style="color: hsl(120, 100%, 40%);">+         len := 0, /* overwritten */</span><br><span style="color: hsl(120, 100%, 40%);">+           ch_desc := {</span><br><span style="color: hsl(120, 100%, 40%);">+                  iei := '64'O,</span><br><span style="color: hsl(120, 100%, 40%);">+                 v := ch_desc</span><br><span style="color: hsl(120, 100%, 40%);">+          },</span><br><span style="color: hsl(120, 100%, 40%);">+            /* Shall be included but empty */</span><br><span style="color: hsl(120, 100%, 40%);">+             ma := {</span><br><span style="color: hsl(120, 100%, 40%);">+                       iei := '72'O,</span><br><span style="color: hsl(120, 100%, 40%);">+                 v := {</span><br><span style="color: hsl(120, 100%, 40%);">+                                len := 0,</span><br><span style="color: hsl(120, 100%, 40%);">+                             ma := ''B</span><br><span style="color: hsl(120, 100%, 40%);">+                     }</span><br><span style="color: hsl(120, 100%, 40%);">+             }</span><br><span style="color: hsl(120, 100%, 40%);">+     };</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span style="color: hsl(120, 100%, 40%);">+  template RSL_IE_ChannelIdent</span><br><span style="color: hsl(120, 100%, 40%);">+  tr_RSL_ChannelIdent(template (present) ChannelDescription ch_desc := ?,</span><br><span style="color: hsl(120, 100%, 40%);">+                           template (present) MobileAllocationLV ma := ?) := {</span><br><span style="color: hsl(120, 100%, 40%);">+               len := ?,</span><br><span style="color: hsl(120, 100%, 40%);">+             ch_desc := {</span><br><span style="color: hsl(120, 100%, 40%);">+                  iei := '64'O,</span><br><span style="color: hsl(120, 100%, 40%);">+                 v := ch_desc</span><br><span style="color: hsl(120, 100%, 40%);">+          },</span><br><span style="color: hsl(120, 100%, 40%);">+            /* Shall be included but empty */</span><br><span style="color: hsl(120, 100%, 40%);">+             ma := {</span><br><span style="color: hsl(120, 100%, 40%);">+                       iei := '72'O,</span><br><span style="color: hsl(120, 100%, 40%);">+                 v := ma</span><br><span style="color: hsl(120, 100%, 40%);">+               }</span><br><span style="color: hsl(120, 100%, 40%);">+     };</span><br><span style="color: hsl(120, 100%, 40%);">+</span><br><span>         /* 9.3.6 */</span><br><span>  type enumerated RSL_SpeechDataInd {</span><br><span>          RSL_SPDI_SPEECH         ('00000001'B),</span><br><span>@@ -791,6 +833,7 @@</span><br><span>                 RSL_LV                  rlm_cause,</span><br><span>           RSL_IE_ReleaseMode      release_mode,</span><br><span>                RSL_IE_ActivationType   act_type,</span><br><span style="color: hsl(120, 100%, 40%);">+             RSL_IE_ChannelIdent     chan_ident,</span><br><span>          RSL_IE_ChannelMode      chan_mode,</span><br><span>           uint8_t                 handover_ref,</span><br><span>                RSL_IE_BS_Power         bs_power,</span><br><span>@@ -846,6 +889,7 @@</span><br><span>                                      rlm_cause, iei = RSL_IE_RLM_CAUSE;</span><br><span>                                   release_mode, iei = RSL_IE_RELEASE_MODE;</span><br><span>                                     act_type, iei = RSL_IE_ACT_TYPE;</span><br><span style="color: hsl(120, 100%, 40%);">+                                      chan_ident, iei = RSL_IE_CHAN_IDENT;</span><br><span>                                         chan_mode, iei = RSL_IE_CHAN_MODE;</span><br><span>                                   handover_ref, iei = RSL_IE_HANDO_REF;</span><br><span>                                        bs_power, iei = RSL_IE_BS_POWER;</span><br><span></span><br></pre><p>To view, visit <a href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19909">change 19909</a>. To unsubscribe, or for help writing mail filters, visit <a href="https://gerrit.osmocom.org/settings">settings</a>.</p><div itemscope itemtype="http://schema.org/EmailMessage"><div itemscope itemprop="action" itemtype="http://schema.org/ViewAction"><link itemprop="url" href="https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/19909"/><meta itemprop="name" content="View Change"/></div></div>

<div style="display:none"> Gerrit-Project: osmo-ttcn3-hacks </div>
<div style="display:none"> Gerrit-Branch: master </div>
<div style="display:none"> Gerrit-Change-Id: I4698fd15a14ee55aa4004d80e65912531f78cf06 </div>
<div style="display:none"> Gerrit-Change-Number: 19909 </div>
<div style="display:none"> Gerrit-PatchSet: 1 </div>
<div style="display:none"> Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de> </div>
<div style="display:none"> Gerrit-MessageType: newchange </div>