mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
10 lines
No EOL
351 B
Text
10 lines
No EOL
351 B
Text
module PacketAnalyzer::NFLOG;
|
|
|
|
const AF_INET : count = 2;
|
|
const AF_INET6 : count = 10;
|
|
|
|
event zeek_init() &priority=20
|
|
{
|
|
PacketAnalyzer::register_packet_analyzer(PacketAnalyzer::ANALYZER_NFLOG, AF_INET, PacketAnalyzer::ANALYZER_IP);
|
|
PacketAnalyzer::register_packet_analyzer(PacketAnalyzer::ANALYZER_NFLOG, AF_INET6, PacketAnalyzer::ANALYZER_IP);
|
|
} |