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 9217] STANAG 5066 DTS Layer dissector

Date: Wed, 02 Oct 2013 17:35:48 +0000

changed bug 9217

What Removed Added
CC   [email protected]

Comment # 4 on bug 9217 from
Hi,

+    proto_tree_add_text(address_tree,
+            tvb,
+            offset,
+            addr_size-addr_size/2,
+            "Destination Address: %d.%d.%d.%d",
+            destination_address >> 24, (destination_address>>16) & 0xFF,
+            (destination_address >> 8) & 0xFF, destination_address & 0xFF);
The address is IPv4 ? why don't use tvb_get_ipv4 ? (or better  tvb_ip_to_str)


You are receiving this mail because:
  • You are watching all bug changes.