mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
9 lines
190 B
Text
9 lines
190 B
Text
# $Id: remote-print.bro 415 2004-09-17 03:25:12Z vern $
|
|
#
|
|
# Write remote print messages into local files.
|
|
|
|
event print_hook(f: file, s: string)
|
|
{
|
|
if ( is_remote_event() )
|
|
print f, s;
|
|
}
|