mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
10 lines
280 B
Text
10 lines
280 B
Text
# Test the privmsg event
|
|
|
|
# @TEST-EXEC: bro -r $TRACES/irc-dcc-send.trace %INPUT
|
|
# @TEST-EXEC: btest-diff .stdout
|
|
|
|
event irc_privmsg_message(c: connection, is_orig: bool, source: string, target: string, message: string)
|
|
{
|
|
print fmt("%s -> %s: %s", source, target, message);
|
|
}
|
|
|