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 9167] Non standard RTPS dissection over TCP

Date: Tue, 17 Dec 2013 10:16:16 +0000

changed bug 9167

What Removed Added
Attachment #12325 Flags   review_for_checkin-

Comment # 7 on bug 9167 from
Comment on attachment 12325 [details]
Patch #2

+static guint get_rtps_message_len(packet_info * pinfo, tvbuff_t *tvb, int
offset)
+{
+  gboolean little_endian;
+  guint32 length;
+  guint16 vendor_id;
+  guint8 flags;
+  guint8 major;
+  guint8 minor;
+
+  (void) pinfo;

About (void) pinfo,
you should use _U_ in function  : 
+static guint get_rtps_message_len(packet_info * pinfo _U_, tvbuff_t *tvb, int
offset)


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