aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-22 03:32:00 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-22 20:14:35 +0700
commit16e24aa4e7a268530d2e479d471b90eba4e5bf1b (patch)
treed43cd04125d327e1acc1da1df993d31216450d95
parent7ef121d2d93cbed94733434bd90a45c84ab968c4 (diff)
library/GSM_RR_Types: add receive templates for IMM ASS Reject
-rw-r--r--library/GSM_RR_Types.ttcn32
1 files changed, 32 insertions, 0 deletions
diff --git a/library/GSM_RR_Types.ttcn b/library/GSM_RR_Types.ttcn
index 4bd65d14..ec9b3ccb 100644
--- a/library/GSM_RR_Types.ttcn
+++ b/library/GSM_RR_Types.ttcn
@@ -1036,4 +1036,36 @@ module GSM_RR_Types {
}
};
+ template GsmRrMessage tr_IMM_ASS_REJ(template FeatureIndicator feature_ind := ?,
+ template ReqRefWaitInd4 rr_wi_list := ?,
+ template IARRestOctets rest_octets := ?) := {
+ header := t_RrHeader(IMMEDIATE_ASSIGNMENT_REJECT, ?),
+ payload := {
+ imm_ass_rej := {
+ feature_ind := feature_ind,
+ page_mode := ?,
+ payload := rr_wi_list,
+ rest_octets := rest_octets
+ }
+ }
+ };
+
+ template ReqRefWaitInd tr_ReqRefWaitInd(template RequestReference ref := ?,
+ template WaitIndication wi := ?) := {
+ req_ref := ref,
+ wait_ind := wi
+ };
+
+ template IARRestOctets tr_IARRestOctets(template ExtRAList ext_ra_list := ?,
+ template uint3_t rcc := ?) := {
+ ext_ra_list := ext_ra_list,
+ rel13_ind := ?,
+ rcc := rcc ifpresent
+ };
+
+ template ExtRAOpt tr_ExtRAOpt(template BIT5 ext_ra := ?) := {
+ presence := '1'B, // L/H
+ ext_ra := ext_ra
+ };
+
} with { encode "RAW" ; variant "FIELDORDER(msb)" }