mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 10:08:20 +00:00
Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
9cbeb44986
78 changed files with 615 additions and 201 deletions
|
@ -422,3 +422,13 @@ event net_weird(name: string)
|
|||
local i = Info($ts=network_time(), $name=name);
|
||||
weird(i);
|
||||
}
|
||||
|
||||
event file_weird(name: string, f: fa_file, addl: string)
|
||||
{
|
||||
local i = Info($ts=network_time(), $name=name, $addl=f$id);
|
||||
|
||||
if ( addl != "" )
|
||||
i$addl += fmt(": %s", addl);
|
||||
|
||||
weird(i);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue