aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-05-28 21:13:35 +0700
committerHarald Welte <laforge@gnumonks.org>2019-05-28 21:04:39 +0000
commit2a92e2a75cb0466882910970e7ad38c144aeefdd (patch)
tree87208500ac7590352596cb8d07743ed7a18a714e
parent9a5f42f9973468f5252afc8fc4f6b3465a81d9e2 (diff)
L1CTL_Types.ttcn: do not restrict the length of L1ctlDataInd
In the existing TC_pcu_* test cases we use L1CTL_DATA_* messages to send / receive (E)GPRS related MAC-blocks. The length of such blocks can be greater than 23 octets (i.e. fixed MAC-block length in GSM), up to 162 octets to be precise. Change-Id: Iced78796882b757016d02a266d55bc2a98b62a3d
-rw-r--r--library/L1CTL_Types.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/L1CTL_Types.ttcn b/library/L1CTL_Types.ttcn
index 87849f5a..f59d1943 100644
--- a/library/L1CTL_Types.ttcn
+++ b/library/L1CTL_Types.ttcn
@@ -159,7 +159,7 @@ module L1CTL_Types {
} with { variant "" };
type record L1ctlDataInd {
- octetstring payload length(23)
+ octetstring payload
} with {
variant (payload) "BYTEORDER(first)"
};