Move /asn1 to /epan/dissectors
[metze/wireshark/wip.git] / epan / dissectors / asn1 / qsig / QSIG-RE.asn
1 -- QSIG-RE.asn
2 --
3 -- Taken from Ecma International
4 -- Standard ECMA-214, 3rd edition (December 2001)
5 -- http://www.ecma-international.org/publications/standards/Ecma-214.htm
6 --
7
8 Recall-Operations-asn1-97  
9   { iso (1) standard (0) pss1-recall (15052) recall-operations-asn1-97 (1) } 
10  
11 DEFINITIONS EXPLICIT TAGS  ::= 
12  
13 BEGIN 
14  
15 IMPORTS  
16    OPERATION, ERROR FROM Remote-Operations-Information-Objects  
17   { joint-iso-itu-t (2) remote-operations (4) informationObjects (5) version1(0) } 
18  
19   EXTENSION, Extension{} FROM Manufacturer-specific-service-extension-class-asn1-97 
20   { iso (1) standard (0) pss1-generic-procedures (11582) msi-class-asn1-97 (11) } 
21  
22   Name FROM Name-Operations-asn1-97 
23   { iso (1) standard (0) pss1-name (13868) name-operations-asn1-97 (1) } 
24  
25   PresentedNumberScreened, PartySubaddress FROM Addressing-Data-Elements-asn1-97 
26   { iso (1) standard (0) pss1-generic-procedures (11582) addressing-data-elements-asn1-97 (20) }; 
27  
28 Recall-Operations OPERATION ::= { recallAlerting | recallAnswered } 
29  
30 recallAlerting OPERATION  ::= { 
31     -- Sent from the Served User PINX to the Primary PINX 
32   ARGUMENT    ReAlertingArg 
33   RETURN RESULT  FALSE 
34   ALWAYS RESPONDS FALSE 
35   CODE    local: 57} 
36  
37 recallAnswered  OPERATION ::= { 
38       -- Sent from the Served User PINX to the Primary PINX 
39    ARGUMENT ReAnswerArg 
40    RETURN RESULT  FALSE 
41    ALWAYS RESPONDS FALSE 
42    CODE    local: 58} 
43  
44 ReAlertingArg   ::= SEQUENCE  { 
45       alertedNumber    [1] PresentedNumberScreened OPTIONAL, 
46       alertedName    [2] Name OPTIONAL, 
47       argumentExtension   CHOICE { 
48     extension   [6] IMPLICIT Extension{{REExtSet}}, 
49         multipleExtension   [7] IMPLICIT SEQUENCE OF Extension{{REExtSet}} 
50     } OPTIONAL  } 
51
52 ReAnswerArg   ::= SEQUENCE  { 
53       connectedNumber    [1] PresentedNumberScreened, 
54       connectedSubaddress  [2] PartySubaddress OPTIONAL, 
55       connectedName    [3] Name OPTIONAL, 
56       argumentExtension   CHOICE { 
57    extension   [6] IMPLICIT Extension{{REExtSet}}, 
58       multipleExtension   [7] IMPLICIT SEQUENCE OF Extension{{REExtSet}} 
59       } OPTIONAL  } 
60 REExtSet EXTENSION ::= {...} 
61  
62 END   -- of Recall-Operations-asn1-97