Huge thanks to our Platinum Members Endace and LiveAction,
and our Silver Member Veeam, for supporting the Wireshark Foundation and project.

Wireshark-bugs: [Wireshark-bugs] [Bug 7372] New: tcap.otid and tcap.dtid can not be filtered for

Date: Fri, 15 Jun 2012 06:04:18 -0700 (PDT)
https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7372

           Summary: tcap.otid and tcap.dtid can not be filtered for.
           Product: Wireshark
           Version: SVN
          Platform: x86
        OS/Version: All
            Status: NEW
          Severity: Major
          Priority: Low
         Component: Wireshark
        AssignedTo: bugzilla-admin@xxxxxxxxxxxxx
        ReportedBy: zecke@xxxxxxxxxxx


Build Information:
Paste the COMPLETE build information from "Help->About Wireshark", "wireshark
-v", or "tshark -v".
--
tcap.otid and tcap.dtid can never be 'chosen' as filter. For both source and
destination transaction identifier only tcap.tid can be selected.


Something the below is fixing it:

diff --git a/asn1/tcap/tcap.cnf b/asn1/tcap/tcap.cnf
index 675eb26..c795121 100644
--- a/asn1/tcap/tcap.cnf
+++ b/asn1/tcap/tcap.cnf
@@ -130,7 +130,7 @@ proto_tree *subtree;
 tid_item = proto_tree_add_text(tree, tvb, offset, -1, "Source Transaction
ID");
 subtree = proto_item_add_subtree(tid_item, ett_otid);

-offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_tid,
+offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_otid,
                                     &parameter_tvb);

 if (parameter_tvb){
@@ -169,7 +169,7 @@ proto_tree *subtree;
 tid_item = proto_tree_add_text(tree, tvb, offset, -1, "Destination Transaction
ID");
 subtree = proto_item_add_subtree(tid_item, ett_otid);

-offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_tid,
+offset = dissect_ber_octet_string(implicit_tag, actx, subtree, tvb, offset,
hf_tcap_dtid,
                                     &parameter_tvb);

 if (parameter_tvb){

-- 
Configure bugmail: https://bugs.wireshark.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching all bug changes.