mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 18:18:19 +00:00
9 lines
242 B
Text
9 lines
242 B
Text
# @TEST-EXEC: bro -r $TRACES/ntp/ntpmode67.pcap %INPUT
|
|
|
|
@load base/protocols/ntp
|
|
|
|
event ntp_message(c: connection, is_orig: bool, msg: NTP::Message)
|
|
{
|
|
print fmt("ntp_message %s -> %s:%d %s", c$id$orig_h, c$id$resp_h, c$id$resp_p, msg);
|
|
}
|
|
|