blob: 27b037810f976b4fefe06590aae8fec5813a60fa (
plain)
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
|
-- CIRCUIT-STATUS-MAP.asn
--
-- Taken from ITU ASN.1 database
-- http://www.itu.int/ITU-T/asn1/database/itu-t/h/h460.3/2002/CIRCUIT-STATUS-MAP.asn
--
-- Module CIRCUIT-STATUS-MAP (H.460.3:11/2002)
CIRCUIT-STATUS-MAP DEFINITIONS AUTOMATIC TAGS ::=
BEGIN
IMPORTS CircuitIdentifier
FROM H323-MESSAGES;
CircuitStatus ::= SEQUENCE -- root for Circuit Status Map ASN.1
{
circuitStatusMap SEQUENCE OF CircuitStatusMap OPTIONAL,
...
}
CircuitStatusMap ::= SEQUENCE {
statusType CircuitStatusType,
baseCircuitID CircuitIdentifier,
range INTEGER(0..4095),
status OCTET STRING,
...
}
CircuitStatusType ::= CHOICE {
serviceStatus NULL, -- status: 0 = out-of-service, 1 = in-service
busyStatus NULL, -- status: 0 = free, 1 = in-use
...
}
END
-- Generated by Asnp, the ASN.1 pretty-printer of France Telecom R&D
|