Comment # 2
on bug 12144
from Peter Wu
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.