mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 15:18:20 +00:00

* origin/topic/seth/zeek_init: Some more testing fixes. Update docs and tests for bro_(init|done) -> zeek_(init|done) Implement the zeek_init handler.
13 lines
243 B
Text
13 lines
243 B
Text
#
|
|
# @TEST-EXEC: bro -r ${TRACES}/var-services-std-ports.trace %INPUT
|
|
# @TEST-EXEC: cat conn.log | bro-cut service | grep -q dns
|
|
#
|
|
|
|
redef Analyzer::disable_all = T;
|
|
|
|
event zeek_init()
|
|
{
|
|
Analyzer::enable_analyzer(Analyzer::ANALYZER_DNS);
|
|
}
|
|
|
|
|