laforge has submitted this change. ( 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(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve laforge: Looks good to me, approved
diff --git a/library/L3_Templates.ttcn b/library/L3_Templates.ttcn index 345935c..c31ce1f 100644 --- a/library/L3_Templates.ttcn +++ b/library/L3_Templates.ttcn @@ -3596,6 +3596,60 @@ } }
+template (value) 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 (value) 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 + } +} +
}