aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h248/h248v1support.asn
blob: 2ab54f000d9a7e0bd1282c8b237f062a173fa698 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
-- Required for support for h248v1
--
-- $Id$
-- 
-- This file represents the differences between h248v1 and the h248v3, the current version
-- This file is included in the Makefile generate_dissectors and related tasks necessary
-- to generate epan/dissectors/packet-h248.[ch]

H238V1-SUPPORT DEFINITIONS IMPLICIT TAGS ::=
BEGIN
	
	--	V1 version of AuditReply
	AuditReplyV1 ::= SEQUENCE
	{
		terminationID		[0] TerminationID,
		auditResult			[1] AuditResultV1
	}
	
	--	V1 Version of AuditResult
	AuditResultV1 ::= CHOICE
	{
		contectAuditResult		[0] TerminationID,
		terminationAuditResult	[1] TerminationAudit
	}
		
	-- V1
	EventParameterV1 ::= SEQUENCE
	{
		eventParamterName		[0] Name,
		value					[1] ValueV1
	}
		
	-- V1
	PropertyParmV1 ::= SEQUENCE
	{
		name				[0] PkgdName,
		value				[1] SEQUENCE OF OCTET STRING,
		extraInfo			[2] CHOICE
		{
			relation		[0] Relation,
			range			[1] BOOLEAN,
			sublist			[2] BOOLEAN
		} OPTIONAL,
			...
	}
	
	-- V1
	SigParameterV1 ::= SEQUENCE
	{
		sigParameterName	[0] Name,
		value				[1] ValueV1
	}
	
	ValueV1 ::= OCTET STRING

END