ANNOUNCEMENT: Live Wireshark University & Allegro Packets online APAC Wireshark Training Session
July 17th, 2024 | 10:00am-11:55am SGT (UTC+8) | Online

Wireshark-bugs: [Wireshark-bugs] [Bug 12144] info column for TLS shows only records from the fir

Date: Fri, 19 Feb 2016 12:27:52 +0000

Comment # 2 on bug 12144 from
Created attachment 14345 [details]
pcapng that shows just the Certificate in the info column

Here is a capture that reproduces the issue, the issue is likely that the frame
contains a finish of a previous TCP segment and a new TCP segment. The first
one blocks the second one from overwriting the info column. See also this
comment:

        /* we also have to prevent the dissector from changing the
         * PROTOCOL and INFO colums since what follows may be an
         * incomplete PDU and we don't want it be changed back from
         *  <Protocol>   to <TCP>
         * XXX There is no good way to block the PROTOCOL column
         * from being changed yet so we set the entire row unwritable.
         */
        col_set_fence(pinfo->cinfo, COL_INFO);
        col_set_writable(pinfo->cinfo, FALSE);


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