mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 04:58:21 +00:00

This replaces the "ip6_hdr_chain" in the "ip6_hdr" record with a vector of "ip6_ext_hdr" to make it easier to traverse the chain.
10 lines
340 B
Text
10 lines
340 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$exts )
|
|
if ( p$ip6$exts[h]$id == IPPROTO_ROUTING )
|
|
if ( p$ip6$exts[h]$routing$rtype == 0 )
|
|
print routing0_data_to_addrs(p$ip6$exts[h]$routing$data);
|
|
}
|