mirror of
https://github.com/zeek/zeek.git
synced 2025-10-13 03:58:20 +00:00
9 lines
286 B
Text
9 lines
286 B
Text
# @TEST-EXEC: bro -C -b -r $TRACES/ext_hdr_hbh_routing.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
event ipv6_ext_headers(c: connection, p: pkt_hdr)
|
|
{
|
|
for ( h in p$ip6$routing )
|
|
if ( p$ip6$routing[h]$rtype == 0 )
|
|
print routing0_data_to_addrs(p$ip6$routing[h]$data);
|
|
}
|