mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00
9 lines
259 B
Text
9 lines
259 B
Text
# @TEST-EXEC: bro -r $TRACES/ipv6-fragmented-dns.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
# @TEST-EXEC: btest-diff dns.log
|
|
|
|
event new_packet(c: connection, p: pkt_hdr)
|
|
{
|
|
if ( p?$ip6 && p?$ udp )
|
|
print fmt("ip6=%s, udp = %s", p$ip6, p$udp);
|
|
}
|