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

We were having stack overflow issues creep in with the self-referential field for the log extension function.
19 lines
No EOL
456 B
Text
19 lines
No EOL
456 B
Text
# @TEST-EXEC: bro -b -r $TRACES/wikipedia.trace %INPUT
|
|
# @TEST-EXEC: btest-diff conn.log
|
|
|
|
@load base/protocols/conn
|
|
|
|
type Extension: record {
|
|
write_ts: time &log;
|
|
stream: string &log;
|
|
system_name: string &log;
|
|
};
|
|
|
|
function add_extension(path: string): Extension
|
|
{
|
|
return Extension($write_ts = network_time(),
|
|
$stream = path,
|
|
$system_name = peer_description);
|
|
}
|
|
|
|
redef Log::default_ext_func = add_extension; |