mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Redo how reassembled flag is accessed in IP_Hdr, filling in a memory hole
This commit is contained in:
parent
aa76cb3925
commit
f849f024e5
3 changed files with 12 additions and 14 deletions
|
@ -100,7 +100,7 @@ bool IPBasedAnalyzer::AnalyzePacket(size_t len, const uint8_t* data, Packet* pkt
|
|||
|
||||
// If the packet is reassembled, disable packet dumping because the
|
||||
// pointer math to dump the data wouldn't work.
|
||||
if ( pkt->ip_hdr->reassembled )
|
||||
if ( pkt->ip_hdr->Reassembled() )
|
||||
pkt->dump_packet = false;
|
||||
else if ( conn->RecordPackets() )
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue