blob: 25e1e693f898cc356f86f01cf3d9e783b435fa91 (
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
|
# rrlp.cnf
# rrlp conformation file
# Copyright 2006 Anders Broman
#.OPT
PER
UNALIGNED
#.END
#.PDU
PDU
#.OMIT_ASSIGNMENTS_EXCEPT MAP-LCS-DataTypes
Ext-GeographicalInformation
maxExt-GeographicalInformation
VelocityEstimate
#.END
#.OMIT_ASSIGNMENT MAP-ExtensionDataTypes
SLR-ArgExtensionContainer
SLR-Arg-PCS-Extensions
#.END
#.FN_HDR PDU
proto_tree_add_item(tree, proto_rrlp, tvb, 0, -1, ENC_NA);
col_append_sep_str(actx->pinfo->cinfo, COL_PROTOCOL, "/", "RRLP");
#.END
#.FN_BODY Ext-GeographicalInformation VAL_PTR = ¶meter_tvb
tvbuff_t *parameter_tvb = NULL;
%(DEFAULT_BODY)s
if(parameter_tvb)
dissect_geographical_description(parameter_tvb, %(ACTX)s->pinfo, tree);
#.END
|