mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 17:18:20 +00:00
Merge branch 'master' into fastpath
This commit is contained in:
commit
eeceb14c1a
116 changed files with 1095 additions and 884 deletions
|
@ -0,0 +1,21 @@
|
|||
# @TEST-EXEC: bro -b %INPUT
|
||||
# @TEST-EXEC: btest-diff test.log
|
||||
|
||||
module Test;
|
||||
|
||||
export {
|
||||
redef enum Log::ID += { LOG };
|
||||
|
||||
type Log: record {
|
||||
ss: set[string];
|
||||
} &log;
|
||||
}
|
||||
|
||||
event bro_init()
|
||||
{
|
||||
Log::create_stream(Test::LOG, [$columns=Log]);
|
||||
|
||||
|
||||
Log::write(Test::LOG, [$ss=set("AA", ",", ",,", "CC")]);
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue