mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
9 lines
202 B
Text
9 lines
202 B
Text
module PacketAnalyzer::SKIP;
|
|
|
|
export {
|
|
## Default analyzer
|
|
const default_analyzer: PacketAnalyzer::Tag = PacketAnalyzer::ANALYZER_IP &redef;
|
|
|
|
## Bytes to skip.
|
|
const skip_bytes: count = 0 &redef;
|
|
}
|