mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 12:08:20 +00:00
Renamed LL-Analyzers to Packet Analyzers.
This commit is contained in:
parent
b2e6c9ac9a
commit
e53ec46c23
148 changed files with 587 additions and 587 deletions
1
scripts/base/packet-protocols/nflog/__load__.zeek
Normal file
1
scripts/base/packet-protocols/nflog/__load__.zeek
Normal file
|
@ -0,0 +1 @@
|
|||
@load ./main
|
11
scripts/base/packet-protocols/nflog/main.zeek
Normal file
11
scripts/base/packet-protocols/nflog/main.zeek
Normal file
|
@ -0,0 +1,11 @@
|
|||
module LL_NFLOG;
|
||||
|
||||
const DLT_NFLOG : count = 239;
|
||||
const AF_INET : count = 2;
|
||||
const AF_INET6 : count = 10;
|
||||
|
||||
redef PacketAnalyzer::config_map += {
|
||||
PacketAnalyzer::ConfigEntry($identifier=DLT_NFLOG, $analyzer=PacketAnalyzer::ANALYZER_NFLOG),
|
||||
PacketAnalyzer::ConfigEntry($parent=PacketAnalyzer::ANALYZER_NFLOG, $identifier=AF_INET, $analyzer=PacketAnalyzer::ANALYZER_IPV4),
|
||||
PacketAnalyzer::ConfigEntry($parent=PacketAnalyzer::ANALYZER_NFLOG, $identifier=AF_INET6, $analyzer=PacketAnalyzer::ANALYZER_IPV6)
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue