aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-10-29 00:18:04 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-10-28 22:32:36 +0000
commite01691df50aba60e5b99b004b0eabbb50446c210 (patch)
tree379ebfc5d9b203fb6f3d8b0d9b41247326b21b61 /library
parentea247d5ceb063e00076de2afee639969d946aa14 (diff)
L1CTL_Types.ttcn: drop length limitation for traffic messages
There is no any reason to limit payload length. Change-Id: I1782856affe427b087fa3f7ef1c02a865d136372
Diffstat (limited to 'library')
-rw-r--r--library/L1CTL_Types.ttcn4
1 files changed, 1 insertions, 3 deletions
diff --git a/library/L1CTL_Types.ttcn b/library/L1CTL_Types.ttcn
index 39732bee..4273ba3e 100644
--- a/library/L1CTL_Types.ttcn
+++ b/library/L1CTL_Types.ttcn
@@ -83,8 +83,6 @@ module L1CTL_Types {
L1CTL_RES_T_SCHED
} with { variant "FIELDLENGTH(8)" };
- const integer TRAFFIC_DATA_LEN := 40;
-
type record L1ctlHdrFlags {
BIT7 padding,
boolean f_done
@@ -299,7 +297,7 @@ module L1CTL_Types {
type record L1ctlTrafficReq {
- octetstring data length(TRAFFIC_DATA_LEN)
+ octetstring data
} with {
variant (data) "BYTEORDER(first)"
}