diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 20:34:10 +0000 |
commit | e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch) | |
tree | 68cb5ef9081156392f1dd62a00c6ccc1451b93df /epan/dissectors/asn1/rrlp/rrlp.cnf | |
parent | Initial commit. (diff) | |
download | wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip |
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'epan/dissectors/asn1/rrlp/rrlp.cnf')
-rw-r--r-- | epan/dissectors/asn1/rrlp/rrlp.cnf | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/epan/dissectors/asn1/rrlp/rrlp.cnf b/epan/dissectors/asn1/rrlp/rrlp.cnf new file mode 100644 index 00000000..25e1e693 --- /dev/null +++ b/epan/dissectors/asn1/rrlp/rrlp.cnf @@ -0,0 +1,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 |