blob: 0cca86ceac389cdcbb6c43a7faf7cbfcf43968f4 [file] [log] [blame]
Harald Welte7a23af32011-02-07 21:24:26 +01001-- asn1ct:compile("MAP-ShortMessageServiceOperations",[ber_bin, {outdir, "../compiled/umts_map"}]).
2
3MAP-ShortMessageServiceOperations {
4 itu-t identified-organization (4) etsi (0) mobileDomain (0)
5 gsm-Network (1) modules (3) map-ShortMessageServiceOperations (9)
6 version9 (9)}
7
8DEFINITIONS
9
10::=
11
12BEGIN
13
14EXPORTS
15 sendRoutingInfoForSM,
16 mo-ForwardSM,
17 mt-ForwardSM,
18 reportSM-DeliveryStatus,
19 alertServiceCentre,
20 informServiceCentre,
21 readyForSM
22;
23
24IMPORTS
25 OPERATION
26FROM Remote-Operations-Information-Objects {
27joint-iso-itu-t remote-operations(4)
28 informationObjects(5) version1(0)}
29
30 systemFailure,
31 dataMissing,
32 unexpectedDataValue,
33 facilityNotSupported,
34 unknownSubscriber,
35 unidentifiedSubscriber,
36 illegalSubscriber,
37 illegalEquipment,
38 teleserviceNotProvisioned,
39 callBarred,
40 subscriberBusyForMT-SMS,
41 sm-DeliveryFailure,
42 messageWaitingListFull,
43 absentSubscriberSM
44FROM MAP-Errors {
45 itu-t identified-organization (4) etsi (0) mobileDomain (0)
46 gsm-Network (1) modules (3) map-Errors (10) version9 (9)}
47
48 RoutingInfoForSM-Arg,
49 RoutingInfoForSM-Res,
50 MO-ForwardSM-Arg,
51 MO-ForwardSM-Res,
52 MT-ForwardSM-Arg,
53 MT-ForwardSM-Res,
54 ReportSM-DeliveryStatusArg,
55 ReportSM-DeliveryStatusRes,
56 AlertServiceCentreArg,
57 InformServiceCentreArg,
58 ReadyForSM-Arg,
59 ReadyForSM-Res
60FROM MAP-SM-DataTypes {
61 itu-t identified-organization (4) etsi (0) mobileDomain (0)
62 gsm-Network (1) modules (3) map-SM-DataTypes (16) version9 (9)}
63
64;
65
66sendRoutingInfoForSM OPERATION ::= { --Timer m
67 ARGUMENT
68 RoutingInfoForSM-Arg
69 RESULT
70 RoutingInfoForSM-Res
71 ERRORS {
72 systemFailure |
73 dataMissing |
74 unexpectedDataValue |
75 facilityNotSupported |
76 unknownSubscriber |
77 teleserviceNotProvisioned |
78 callBarred |
79 absentSubscriberSM}
80 CODE local:45 }
81
82mo-ForwardSM OPERATION ::= { --Timer ml
83 ARGUMENT
84 MO-ForwardSM-Arg
85 RESULT
86 MO-ForwardSM-Res
87 -- optional
88 ERRORS {
89 systemFailure |
90 unexpectedDataValue |
91 facilityNotSupported |
92 sm-DeliveryFailure}
93 CODE local:46 }
94
95mt-ForwardSM OPERATION ::= { --Timer ml
96 ARGUMENT
97 MT-ForwardSM-Arg
98 RESULT
99 MT-ForwardSM-Res
100 -- optional
101 ERRORS {
102 systemFailure |
103 dataMissing |
104 unexpectedDataValue |
105 facilityNotSupported |
106 unidentifiedSubscriber |
107 illegalSubscriber |
108 illegalEquipment |
109 subscriberBusyForMT-SMS |
110 sm-DeliveryFailure |
111 absentSubscriberSM}
112 CODE local:44 }
113
114reportSM-DeliveryStatus OPERATION ::= { --Timer s
115 ARGUMENT
116 ReportSM-DeliveryStatusArg
117 RESULT
118 ReportSM-DeliveryStatusRes
119 -- optional
120 ERRORS {
121 dataMissing |
122 unexpectedDataValue |
123 unknownSubscriber |
124 messageWaitingListFull}
125 CODE local:47 }
126
127alertServiceCentre OPERATION ::= { --Timer s
128 ARGUMENT
129 AlertServiceCentreArg
130 RETURN RESULT TRUE
131 ERRORS {
132 systemFailure |
133 dataMissing |
134 unexpectedDataValue}
135 CODE local:64 }
136
137informServiceCentre OPERATION ::= { --Timer s
138 ARGUMENT
139 InformServiceCentreArg
140 CODE local:63 }
141
142readyForSM OPERATION ::= { --Timer m
143 ARGUMENT
144 ReadyForSM-Arg
145 RESULT
146 ReadyForSM-Res
147 -- optional
148 ERRORS {
149 dataMissing |
150 unexpectedDataValue |
151 facilityNotSupported |
152 unknownSubscriber}
153 CODE local:66 }
154
155END