You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TcpdumpEventParser::PackHexLine only parses 16-bit tuples and a packet with an odd number of bytes causes TcpdumpEventParser::GetNextPacketEvent to get out of alignment and read the next line as if it were part of the hex line resulting in a skipped packet.
Also in TcpdumpEventParser::GetNextPacketEvent, timestamp seconds are read as floats but cast to double when generating theTime. This is not a bug, but should just read as double to prevent out-of-order packets due to floating point conversion/rounding (also better when using tcpdump --nano option).
The text was updated successfully, but these errors were encountered:
TcpdumpEventParser::PackHexLine
only parses 16-bit tuples and a packet with an odd number of bytes causesTcpdumpEventParser::GetNextPacketEvent
to get out of alignment and read the next line as if it were part of the hex line resulting in a skipped packet.Also in
TcpdumpEventParser::GetNextPacketEvent
, timestamp seconds are read as floats but cast to double when generatingtheTime
. This is not a bug, but should just read as double to prevent out-of-order packets due to floating point conversion/rounding (also better when usingtcpdump --nano
option).The text was updated successfully, but these errors were encountered: