MSWSP: use GuidPropertySet_find_guid() in parse_CFullPropSpec()
[wireshark-wip.git] / asn1 / qsig / QSIG-RE.asn
blob25ee4509894720740538c6308759e7c1f6403dfa
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 -- $Id$
8 --
10 Recall-Operations-asn1-97  
11   { iso (1) standard (0) pss1-recall (15052) recall-operations-asn1-97 (1) } 
13 DEFINITIONS EXPLICIT TAGS  ::= 
15 BEGIN 
17 IMPORTS  
18    OPERATION, ERROR FROM Remote-Operations-Information-Objects  
19   { joint-iso-itu-t (2) remote-operations (4) informationObjects (5) version1(0) } 
21   EXTENSION, Extension{} FROM Manufacturer-specific-service-extension-class-asn1-97 
22   { iso (1) standard (0) pss1-generic-procedures (11582) msi-class-asn1-97 (11) } 
24   Name FROM Name-Operations-asn1-97 
25   { iso (1) standard (0) pss1-name (13868) name-operations-asn1-97 (1) } 
27   PresentedNumberScreened, PartySubaddress FROM Addressing-Data-Elements-asn1-97 
28   { iso (1) standard (0) pss1-generic-procedures (11582) addressing-data-elements-asn1-97 (20) }; 
30 Recall-Operations OPERATION ::= { recallAlerting | recallAnswered } 
32 recallAlerting OPERATION  ::= { 
33     -- Sent from the Served User PINX to the Primary PINX 
34   ARGUMENT    ReAlertingArg 
35   RETURN RESULT  FALSE 
36   ALWAYS RESPONDS FALSE 
37   CODE    local: 57} 
39 recallAnswered  OPERATION ::= { 
40       -- Sent from the Served User PINX to the Primary PINX 
41    ARGUMENT ReAnswerArg 
42    RETURN RESULT  FALSE 
43    ALWAYS RESPONDS FALSE 
44    CODE    local: 58} 
46 ReAlertingArg   ::= SEQUENCE  { 
47       alertedNumber    [1] PresentedNumberScreened OPTIONAL, 
48       alertedName    [2] Name OPTIONAL, 
49       argumentExtension   CHOICE { 
50     extension   [6] IMPLICIT Extension{{REExtSet}}, 
51         multipleExtension   [7] IMPLICIT SEQUENCE OF Extension{{REExtSet}} 
52     } OPTIONAL  } 
54 ReAnswerArg   ::= SEQUENCE  { 
55       connectedNumber    [1] PresentedNumberScreened, 
56       connectedSubaddress  [2] PartySubaddress OPTIONAL, 
57       connectedName    [3] Name OPTIONAL, 
58       argumentExtension   CHOICE { 
59    extension   [6] IMPLICIT Extension{{REExtSet}}, 
60       multipleExtension   [7] IMPLICIT SEQUENCE OF Extension{{REExtSet}} 
61       } OPTIONAL  } 
62 REExtSet EXTENSION ::= {...} 
64 END   -- of Recall-Operations-asn1-97