mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 16:48:19 +00:00
16 lines
249 B
Text
16 lines
249 B
Text
#
|
|
# @TEST-EXEC: bro %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event bro_init()
|
|
{
|
|
local a = global_ids();
|
|
for ( i in a )
|
|
{
|
|
# the table is quite large, so just print one item we expect
|
|
if ( i == "bro_init" )
|
|
print a[i]$type_name;
|
|
|
|
}
|
|
|
|
}
|