jolly has uploaded this change for review. ( 
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33973 )


Change subject: ASCI: Add templates to send and receive GCC/BCC call control 
messages
......................................................................

ASCI: Add templates to send and receive GCC/BCC call control messages

Related: OS#4854
Change-Id: I9ff5587a9fda1ea756891fc39a20cfd05924f628
---
M library/L3_Templates.ttcn
1 file changed, 64 insertions(+), 0 deletions(-)



  git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks 
refs/changes/73/33973/1

diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn
index 345935c..2adcec1 100644
--- a/library/L3_Templates.ttcn
+++ b/library/L3_Templates.ttcn
@@ -3596,6 +3596,60 @@
        }
 }

+template PDU_ML3_MS_NW ts_ML3_MO_BCC(integer tid, octetstring bcc) := {
+       discriminator := '0001'B,
+       tiOrSkip := {
+               transactionId := {
+                       tio := int2bit(tid, 3),
+                       tiFlag := c_TIF_ORIG,
+                       tIExtension := omit
+               }
+       },
+       msgs := {
+               bcc := bcc
+       }
+}
+template PDU_ML3_NW_MS tr_ML3_MT_BCC(integer tid, template octetstring bcc := 
?) := {
+       discriminator := '0001'B,
+       tiOrSkip := {
+               transactionId := {
+                       tio := int2bit(tid, 3),
+                       tiFlag := c_TIF_REPL,
+                       tIExtension := omit
+               }
+       },
+       msgs := {
+               bcc := bcc
+       }
+}
+
+template PDU_ML3_MS_NW ts_ML3_MO_GCC(integer tid, octetstring gcc) := {
+       discriminator := '0000'B,
+       tiOrSkip := {
+               transactionId := {
+                       tio := int2bit(tid, 3),
+                       tiFlag := c_TIF_ORIG,
+                       tIExtension := omit
+               }
+       },
+       msgs := {
+               gcc := gcc
+       }
+}
+template PDU_ML3_NW_MS tr_ML3_MT_GCC(integer tid, template octetstring gcc := 
?) := {
+       discriminator := '0000'B,
+       tiOrSkip := {
+               transactionId := {
+                       tio := int2bit(tid, 3),
+                       tiFlag := c_TIF_REPL,
+                       tIExtension := omit
+               }
+       },
+       msgs := {
+               gcc := gcc
+       }
+}
+


 }

--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/33973
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: I9ff5587a9fda1ea756891fc39a20cfd05924f628
Gerrit-Change-Number: 33973
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <[email protected]>
Gerrit-MessageType: newchange

Reply via email to