mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
14 lines
267 B
Text
14 lines
267 B
Text
# $Id:$
|
|
#
|
|
# Forward remote alarms to our local system.
|
|
|
|
event notice_action(n: notice_info, action: NoticeAction)
|
|
{
|
|
if ( is_remote_event() )
|
|
{
|
|
# Don't raise this event recursively.
|
|
suppress_notice_action = T;
|
|
NOTICE(n);
|
|
suppress_notice_action = F;
|
|
}
|
|
}
|