mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00
33 lines
982 B
Text
33 lines
982 B
Text
# Needs perftools support.
|
|
#
|
|
# @TEST-REQUIRES: zeek --help 2>&1 | grep -q mem-leaks
|
|
#
|
|
# @TEST-GROUP: leaks
|
|
#
|
|
# @TEST-EXEC: HEAP_CHECK_DUMP_DIRECTORY=. HEAPCHECK=local btest-bg-run zeek1 zeek -m -b -r $TRACES/tunnels/6in6.pcap %INPUT
|
|
# @TEST-EXEC: HEAP_CHECK_DUMP_DIRECTORY=. HEAPCHECK=local btest-bg-run zeek2 zeek -m -b -r $TRACES/tunnels/6in6in6.pcap %INPUT
|
|
# @TEST-EXEC: HEAP_CHECK_DUMP_DIRECTORY=. HEAPCHECK=local btest-bg-run zeek3 zeek -m -b -r $TRACES/tunnels/6in6-tunnel-change.pcap %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 60
|
|
|
|
event new_connection(c: connection)
|
|
{
|
|
if ( c?$tunnel )
|
|
{
|
|
print "new_connection: tunnel";
|
|
print fmt(" conn_id: %s", c$id);
|
|
print fmt(" encap: %s", c$tunnel);
|
|
}
|
|
else
|
|
{
|
|
print "new_connection: no tunnel";
|
|
}
|
|
}
|
|
|
|
event tunnel_changed(c: connection, e: EncapsulatingConnVector)
|
|
{
|
|
print "tunnel_changed:";
|
|
print fmt(" conn_id: %s", c$id);
|
|
if ( c?$tunnel )
|
|
print fmt(" old: %s", c$tunnel);
|
|
print fmt(" new: %s", e);
|
|
}
|