blob: 3866b1e6e526e461faf19b447c6f595784a724eb [file] [log] [blame]
Harald Welte7a23af32011-02-07 21:24:26 +01001MAP-OM-DataTypes {
2 itu-t identified-organization (4) etsi (0) mobileDomain (0)
3 gsm-Network (1) modules (3) map-OM-DataTypes (12) version9 (9)}
4
5DEFINITIONS
6
7IMPLICIT TAGS
8
9::=
10
11BEGIN
12
13EXPORTS
14 ActivateTraceModeArg,
15 ActivateTraceModeRes,
16 DeactivateTraceModeArg,
17 DeactivateTraceModeRes
18;
19
20IMPORTS
21 AddressString,
22 IMSI
23FROM MAP-CommonDataTypes {
24 itu-t identified-organization (4) etsi (0) mobileDomain (0)
25 gsm-Network (1) modules (3) map-CommonDataTypes (18) version9 (9)}
26
27 ExtensionContainer
28FROM MAP-ExtensionDataTypes {
29 itu-t identified-organization (4) etsi (0) mobileDomain (0)
30 gsm-Network (1) modules (3) map-ExtensionDataTypes (21) version9 (9)}
31
32;
33
34ActivateTraceModeArg ::= SEQUENCE {
35 imsi [0] IMSI OPTIONAL,
36 traceReference [1] TraceReference,
37 traceType [2] TraceType,
38 omc-Id [3] AddressString OPTIONAL,
39 extensionContainer [4] ExtensionContainer OPTIONAL,
40 ...}
41
42TraceReference ::= OCTET STRING (SIZE (1..2))
43
44TraceType ::= INTEGER
45 (0..255)
46 -- Trace types are fully defined in TS GSM 12.08.
47
48ActivateTraceModeRes ::= SEQUENCE {
49 extensionContainer [0] ExtensionContainer OPTIONAL,
50 ...}
51
52DeactivateTraceModeArg ::= SEQUENCE {
53 imsi [0] IMSI OPTIONAL,
54 traceReference [1] TraceReference,
55 extensionContainer [2] ExtensionContainer OPTIONAL,
56 ...}
57
58DeactivateTraceModeRes ::= SEQUENCE {
59 extensionContainer [0] ExtensionContainer OPTIONAL,
60 ...}
61
62END