b575f981cfad3a0e9897af2394e9f681c5b893cc
[metze/wireshark/wip.git] / asn1 / rrlp / rrlp.cnf
1 # rrlp.cnf
2 # rrlp conformation file
3 # Copyright 2006 Anders Broman 
4 # $Id$
5
6 #.OPT
7 PER
8 UNALIGNED
9 #.END
10
11 #.PDU
12 PDU
13
14 #.OMIT_ASSIGNMENTS_EXCEPT  MAP-LCS-DataTypes
15 Ext-GeographicalInformation
16 maxExt-GeographicalInformation
17 VelocityEstimate
18 #.END
19
20 #.OMIT_ASSIGNMENT  MAP-ExtensionDataTypes
21 SLR-ArgExtensionContainer
22 SLR-Arg-PCS-Extensions
23 #.END
24
25 #.FN_HDR PDU
26         
27         proto_tree_add_item(tree, proto_rrlp, tvb, 0, -1, FALSE);
28
29         if (check_col(actx->pinfo->cinfo, COL_PROTOCOL)) 
30                 col_append_str(actx->pinfo->cinfo, COL_PROTOCOL, "/RRLP");
31 #.END
32
33
34 #.FN_BODY Ext-GeographicalInformation VAL_PTR = &parameter_tvb
35
36 tvbuff_t *parameter_tvb = NULL;
37
38   %(DEFAULT_BODY)s
39
40   if(parameter_tvb)
41         dissect_geographical_description(parameter_tvb, %(ACTX)s->pinfo, tree);
42 #.END