Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / epan / dissectors / asn1 / qsig / QSIG-MID.asn
blob8e5bbe0701f4bece7fb43618401407061d5c5c65
1 -- QSIG-MID.asn
2 --
3 -- Taken from Ecma International
4 -- Standard ECMA-347, (June 2003)
5 -- http://www.ecma-international.org/publications/standards/Ecma-347.htm
6 --
8 SS-MID-Operations-asn1-97 
9 {iso (1) identified-organization (3) icd-ecma (12) standard (0) 
10 qsig-mailbox-identification (347) mailbox-identification-operations-asn1-97 (2)} 
12 DEFINITIONS EXPLICIT TAGS ::= 
14 BEGIN 
16 IMPORTS    OPERATION, ERROR FROM  
17                  Remote-Operations-Information-Objects 
18                  {joint-iso-itu-t remote-operations (4) informationObjects (5) 
19                  version1 (0)} 
21             EXTENSION, Extension{} FROM  
22                  Manufacturer-specific-service-extension-class-asn1-97 
23                  {iso standard pss1-generic-procedures (11582)  msi-class-asn1-97 
24                  (11)} 
26             basicServiceNotProvided, userNotSubscribed, invalidServedUserNr  
27                  FROM General-Error-List 
28               {itu-t (0) recommendation (0) q (17) 950 general-error-list (1)} 
30             PresentedAddressUnscreened  FROM  
31                  Addressing-Data-Elements-asn1-97  
32                  {iso standard pss1-generic-procedures (11582) addressing-data-elements-asn1-97 (20)} 
34             Name FROM  
35                  Name-Operations-asn1-97 
36                  {iso standard pss1-name (13868) name-operations-asn1-97 (1)} 
38             MessageType, MsgCentreId FROM 
39                  SS-MCM-Operations-asn1-97 
40                  {iso (1) identified-organization (3) icd-ecma (12) standard (0) 
41                  qsig-message-centre-monitoring (347)  
42                  message-centre-monitoring-operations-asn1-97 (1)} 
43             ; 
46 MID-Operations     OPERATION ::= {mIDMailboxAuth | 
47                                   mIDMailboxID} 
49 mIDMailboxAuth     OPERATION ::= { 
50                    ARGUMENT      MIDMailboxAuthArg 
51                    RESULT        MIDDummyRes 
52                    ERRORS        {userNotSubscribed | 
53                                  invalidServedUserNr | 
54                                  invalidMailbox | 
55                                  authorizationFailed | 
56                                  unspecified} 
57                    CODE          local:119} 
59 mIDMailboxID        OPERATION ::= { 
60                     ARGUMENT      MIDMailboxIDArg 
61                     RESULT        MIDDummyRes 
62                     ERRORS        {userNotSubscribed | 
63                                   invalidServedUserNr | 
64                                   invalidMailbox | 
65                                   unspecified} 
66                     CODE          local:120} 
69 MIDMailboxAuthArg   ::= SEQUENCE 
70                         { 
72                         partyInfo           PartyInfo, 
73                         servedUserName      Name             OPTIONAL, 
74                         mailBox             [8]String        OPTIONAL, 
75                         password            String,  
76                         extensions          MIDExtensions    OPTIONAL, 
77                         ... 
78                         } 
81 MIDMailboxIDArg    ::= SEQUENCE 
82                        { 
84                        partyInfo            PartyInfo, 
85                        servedUserName       Name             OPTIONAL, 
86                        mailBox              String, 
87                        extensions           MIDExtensions    OPTIONAL, 
88                        ...     
89                        } 
92 MIDDummyRes        ::= MIDExtensions     
93                      
94 PartyInfo      ::= SEQUENCE 
95                        { 
96                        servedUserNr         PresentedAddressUnscreened, 
97                        messageType          MessageType      OPTIONAL, 
98                        messageCentreID      MsgCentreId 
99                        } 
101 String            ::= CHOICE 
102                       { 
103                       stringBmp            BMPString, 
104                       stringUtf8           UTF8String 
105                       } 
108 MIDExtensions     ::= CHOICE 
109                       { 
110                       none                 NULL, 
111                       extension            [1] IMPLICIT Extension {{MIDExtSet}}, 
112                       multipleExtension    [2] IMPLICIT SEQUENCE OF  
113                                            Extension {{ MIDExtSet }} 
114                       } 
116 invalidMailbox         ERROR ::= { 
117                        CODE      local:1039} 
120 authorizationFailed    ERROR ::= { 
121                        CODE      local:1040} 
123 unspecified            ERROR ::= { 
124                        PARAMETER Extension{{MIDExtSet}} 
125                        CODE      local:1008} 
127 MIDExtSet              EXTENSION ::= {...} 
128       
129 END        -- of SS-MID-Operations-asn1-97