1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
-- Name-Operations.asn
--
-- Taken from ITU ASN.1 database
-- http://www.itu.int/ITU-T/asn1/database/itu-t/h/h450.8/2000/Name-Operations.asn
--
-- Module Name-Operations (H.450.8:02/2000)
Name-Operations {itu-t recommendation h 450 8 version1(0) name-operations(0)}
DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS
OPERATION, ERROR
FROM Remote-Operations-Information-Objects {joint-iso-itu-t
remote-operations(4) informationObjects(5) version1(0)}
EXTENSION, Extension{}
FROM Manufacturer-specific-service-extension-definition {itu-t
recommendation h 450 1 version1(0) msi-definition(18)}
MixedExtension
FROM Call-Hold-Operations {itu-t recommendation h 450 4 version1(0)
call-hold-operations(0)};
NameOperations OPERATION ::=
{callingName | alertingName | connectedName | busyName}
callingName OPERATION ::= {
ARGUMENT
SEQUENCE {name Name,
extensionArg SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...}
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:0
}
alertingName OPERATION ::= {
ARGUMENT
SEQUENCE {name Name,
extensionArg SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...}
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:1
}
connectedName OPERATION ::= {
ARGUMENT
SEQUENCE {name Name,
extensionArg SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...}
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:2
}
busyName OPERATION ::= {
ARGUMENT
SEQUENCE {name Name,
extensionArg SEQUENCE SIZE (0..255) OF MixedExtension OPTIONAL,
...}
RETURN RESULT FALSE
ALWAYS RESPONDS FALSE
CODE local:3
}
Name ::= CHOICE {
namePresentationAllowed NamePresentationAllowed,
namePresentationRestricted NamePresentationRestricted,
nameNotAvailable NULL,
...
}
NamePresentationAllowed ::= CHOICE {
simpleName SimpleName,
extendedName ExtendedName,
...
}
NamePresentationRestricted ::= CHOICE {
simpleName SimpleName,
extendedName ExtendedName,
restrictedNull NULL, -- only used in case of interworking where other network
-- provides indication that the name is restricted without
-- the name itself
...
}
SimpleName ::= OCTET STRING(SIZE (1..50))
ExtendedName ::= BMPString(SIZE (1..256)) -- Basic ISO/IEC 10646-1 (Unicode)
END -- of Name-Operations
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|