zeek/testing/btest/core/mobile-ipv6-routing.test
Tim Wojtulewicz b14cd1ef16 GH-1216: Enable Mobile IPv6 support by default
This removes the ENABLE_MOBILE_IPV6 #define variable. It also marks the
--enable-mobile-ipv6 configure argument as deprecated.
2021-06-28 11:11:55 -07:00

10 lines
343 B
Text

# @TEST-EXEC: zeek -b -r $TRACES/mobile-ipv6/ipv6-mobile-routing.trace %INPUT >output
# @TEST-EXEC: btest-diff output
# Just check that the responder of the connection is the final routing
# address, but the destination in the header is the actual destination address.
event new_packet(c: connection, p: pkt_hdr)
{
print c$id;
print p;
}