aboutsummaryrefslogtreecommitdiffstats
path: root/library/GTPv2_PrivateExtensions.ttcn
blob: 63552f2c912ea822ca6da85992f5301d41c16f3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module GTPv2_PrivateExtensions {

/* This is a small stub module to make GTPv2_Types.ttcn from
 * titan.ProtocolModules.GTPv2_v13.7.0 compile */

import from General_Types all;

type record PrivateExtension {
	OCT1		elementIdentifier,
	LIN2_BO_LAST	lengthIndicator,
	BIT4		instance,
	BIT4		spare,
	octetstring	data
} with {
	variant (lengthIndicator) "LENGTHTO(data)";
	variant "PRESENCE (elementIdentifier = 'FE'O; )"
}

type record of PrivateExtension PrivateExtension_List;

} with{ encode "RAW" }