9 lines
305 B
Plaintext
9 lines
305 B
Plaintext
# @TEST-EXEC: zeek -b -C -r $TRACES/icmp/icmp6-neighbor-solicit.pcap %INPUT > output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
event icmp_neighbor_solicitation(c: connection, info: icmp_info, tgt: addr, options: icmp6_nd_options)
|
|
{
|
|
local hdr: raw_pkt_hdr = get_current_packet_header();
|
|
print fmt("%s", hdr);
|
|
}
|