Merge branch 'master' into fastpath

This commit is contained in:
Jon Siwek 2011-12-20 11:45:50 -06:00
commit eeceb14c1a
116 changed files with 1095 additions and 884 deletions

View file

@ -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")]);
}