wireshark/asn1/rrlp/rrlp.cnf
Tomas Kukosa eb782d0cea - CLASS definitions support including exports through the *-exp.cnf file
- support of extension in middle of SEQUENCE root elements
- new option EMBEDDED_PDV_CB to set default callback
- ChoiceValue support at syntax level
- ValueSet support at syntax level
- exception identifier support
- ValueFromObject support at syntax level
- next minor changes (to compile X.880 and INAP)

- dissectors using classes regenerated

svn path=/trunk/; revision=22036
2007-06-04 14:41:38 +00:00

42 lines
728 B
INI

# rrlp.cnf
# rrlp conformation file
# Copyright 2006 Anders Broman
# $Id$
#.OPT
PER
UNALIGNED
#.END
#.PDU
PDU
#.OMIT_ASSIGNMENTS_EXCEPT MAP-LCS-DataTypes
Ext-GeographicalInformation
maxExt-GeographicalInformation
VelocityEstimate
#.END
#.OMIT_ASSIGNMENT MAP-ExtensionDataTypes
SLR-ArgExtensionContainer
#.END
#.FN_HDR PDU
proto_tree_add_item(tree, proto_rrlp, tvb, 0, -1, FALSE);
if (check_col(actx->pinfo->cinfo, COL_PROTOCOL))
col_append_str(actx->pinfo->cinfo, COL_PROTOCOL, "/RRLP");
#.END
#.FN_BODY Ext-GeographicalInformation VAL_PTR = &parameter_tvb
tvbuff_t *parameter_tvb = NULL;
%(DEFAULT_BODY)s
if(parameter_tvb)
dissect_geographical_description(parameter_tvb, %(ACTX)s->pinfo, tree);
#.END