blob: adc50bd4368b435742e2f6c8dff1f937956a72e3 [file] [log] [blame]
Harald Welte7a23af32011-02-07 21:24:26 +01001MAP-OperationAndMaintenanceOperations {
2 itu-t identified-organization (4) etsi (0) mobileDomain (0)
3 gsm-Network (1) modules (3) map-OperationAndMaintenanceOperations (6)
4 version9 (9)}
5
6DEFINITIONS
7
8::=
9
10BEGIN
11
12EXPORTS
13 activateTraceMode,
14 deactivateTraceMode,
15 sendIMSI
16;
17
18IMPORTS
19 OPERATION
20FROM Remote-Operations-Information-Objects {
21joint-iso-itu-t remote-operations(4)
22 informationObjects(5) version1(0)}
23
24 systemFailure,
25 dataMissing,
26 unexpectedDataValue,
27 facilityNotSupported,
28 unknownSubscriber,
29 unidentifiedSubscriber,
30 tracingBufferFull
31FROM MAP-Errors {
32 itu-t identified-organization (4) etsi (0) mobileDomain (0)
33 gsm-Network (1) modules (3) map-Errors (10) version9 (9)}
34
35 ActivateTraceModeArg,
36 ActivateTraceModeRes,
37 DeactivateTraceModeArg,
38 DeactivateTraceModeRes
39FROM MAP-OM-DataTypes {
40 itu-t identified-organization (4) etsi (0) mobileDomain (0)
41 gsm-Network (1) modules (3) map-OM-DataTypes (12) version9 (9)}
42
43 ISDN-AddressString,
44 IMSI
45FROM MAP-CommonDataTypes {
46 itu-t identified-organization (4) etsi (0) mobileDomain (0)
47 gsm-Network (1) modules (3) map-CommonDataTypes (18) version9 (9)}
48;
49
50
51activateTraceMode OPERATION ::= { --Timer m
52 ARGUMENT
53 ActivateTraceModeArg
54 RESULT
55 ActivateTraceModeRes
56 -- optional
57 ERRORS {
58 systemFailure |
59 dataMissing |
60 unexpectedDataValue |
61 facilityNotSupported |
62 unidentifiedSubscriber |
63 tracingBufferFull}
64 CODE local:50 }
65
66deactivateTraceMode OPERATION ::= { --Timer m
67 ARGUMENT
68 DeactivateTraceModeArg
69 RESULT
70 DeactivateTraceModeRes
71 -- optional
72 ERRORS {
73 systemFailure |
74 dataMissing |
75 unexpectedDataValue |
76 facilityNotSupported |
77 unidentifiedSubscriber}
78 CODE local:51 }
79
80sendIMSI OPERATION ::= { --Timer m
81 ARGUMENT
82 ISDN-AddressString
83 RESULT
84 IMSI
85 ERRORS {
86 dataMissing |
87 unexpectedDataValue |
88 unknownSubscriber}
89 CODE local:58 }
90
91END