Utilise new MergeSym feature to no longer overwrite the source .DEF file when buildin...
[openh323.git] / src / h4508.asn
blob4336df6d9a1c8f0730710af24236af95b9d90f85
1 Name-Operations
3   itu-t recommendation h 450 8 version1(0) name-operations(0)
6 DEFINITIONS AUTOMATIC TAGS ::=
7 BEGIN
9   IMPORTS Extension FROM H4501 -- Manufacturer-specific-service-extension-definition
10           {
11             itu-t recommendation h 450 1 version1 (0) msi-definition (18) 
12           }
14           MixedExtension FROM H4505 -- Call-Hold-Operations 
15           {
16             itu-t recommendation h 450 4 version1(0) call-hold-operations(0)
17           };
19   NameOperations ::= ENUMERATED
20   {
21     callingName(0),
22     alertingName(1),
23     connectedName(2),
24     busyName(3)
25   }
27   Name ::= CHOICE
28   {
29     namePresentationAllowed    NamePresentationAllowed,
30     namePresentationRestricted NamePresentationRestricted,
31     nameNotAvailable           NULL,
32     ...
33   }
35   NamePresentationAllowed ::= CHOICE
36   {
37     simpleName   SimpleName,
38     extendedName ExtendedName,
39     ...
40   }
42   NamePresentationRestricted ::= CHOICE
43   {
44     simpleName     SimpleName,
45     extendedName   ExtendedName,
46     restrictedNull NULL, -- only used in case of interworking where other network
47                          -- provides indication that the name is restricted without
48                          -- the name itself
49     ...
50   }
52   SimpleName ::= OCTET STRING (SIZE (1..50))
54   ExtendedName ::= BMPString(SIZE (1..256)) --Basic ISO/IEC 10646-1 (Unicode)
56 END -- of Name-Operations