zeek/scripts/base/protocols/imap/main.bro
Seth Hall 8cefb9be42 Implement the zeek_init handler.
Implements the change and a test.
2019-04-14 08:37:35 -04:00

11 lines
183 B
Text

module IMAP;
const ports = { 143/tcp };
redef likely_server_ports += { ports };
event zeek_init() &priority=5
{
Analyzer::register_for_ports(Analyzer::ANALYZER_IMAP, ports);
}