mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 19:18:19 +00:00
IPBasedAnalyzer: Call TapPacket() when skipping
When skip_further_processing() is called, a TapAnalyzer should still see the packets as skipped with SkipReason "skipping".
This commit is contained in:
parent
dc904b2216
commit
4bc7f9532c
4 changed files with 38 additions and 2 deletions
|
@ -29,6 +29,7 @@ enum class SkipReason : uint8_t {
|
|||
Unknown, ///< Placeholder if no other value fits.
|
||||
BadChecksum, ///< The packet's checksum is invalid and ignore_checksums is false.
|
||||
BadProtoHeader, ///< Something was off with the lengths or offsets in the protocol header.
|
||||
SkipProcessing, ///< The session adapter's connection had skip_further_processing called on it.
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue