aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h248/h248.cnf
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-03-13 13:26:13 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-03-13 13:26:13 +0000
commitfd19aa7c890996fa9d43440ea5c26433c486f059 (patch)
tree97ef9e04a7bf80c7438f281ab2b1628bff90efef /asn1/h248/h248.cnf
parent16a7f0db082224083f55c3266fd7c5682f04d671 (diff)
H.248 Annex E dissector does not properly dissect event parameters
(Update the h.248 dissector's package registration to support v1 packets.) Applying part of the patch from Alex Lindberg in bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6915 by hand. Fixes bug https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=4842 svn path=/trunk/; revision=41526
Diffstat (limited to 'asn1/h248/h248.cnf')
-rw-r--r--asn1/h248/h248.cnf10
1 files changed, 9 insertions, 1 deletions
diff --git a/asn1/h248/h248.cnf b/asn1/h248/h248.cnf
index 2c5d941102..1cb5105190 100644
--- a/asn1/h248/h248.cnf
+++ b/asn1/h248/h248.cnf
@@ -21,6 +21,8 @@ EventName
EventParameterName
EventParamValue
ContextID
+EventParamValueV1
+#SigParamValueV1
#.TYPE_RENAME
IndAudMediaDescriptor/streams IndAudMediaDescriptorStreams
@@ -81,6 +83,12 @@ TransactionRequest/transactionId transactionId
SegmentReply/transactionId seg_rep_transactionId
TransactionReply/transactionId trep_transactionId
TransactionPending/transactionId tpend_transactionId
+PropertyParmV1/values prop_param_values
+EventParameterV1/value event_param_value
+SigParameterV1/value sig_param_value
+PropertyParmV1/value prop_parm_value
+AuditReplyV1/auditResult audit_result
+PropertyParmV1/extraInfo extra_info
#.FN_HDR Message
curr_info.msg = gcp_msg(actx->pinfo,tvb_raw_offset(tvb),keep_persistent_data);
@@ -395,7 +403,7 @@ TransactionPending/transactionId tpend_transactionId
#.FN_BODY EventParameter
/* H248 v1 support */
- if (h248_version >1) {
+ if (h248_version > 1) {
%(DEFAULT_BODY)s
} else {
offset = dissect_h248_EventParameterV1( implicit_tag, tvb, offset, actx, tree, hf_index);