mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
9 lines
314 B
Text
9 lines
314 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/tcp/truncated-header.pcap %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
|
|
event tcp_packet(c: connection, is_orig: bool, flags: string, seq: count, ack: count, len: count, payload: string)
|
|
{
|
|
# Just having this handler used to crash Zeek on this trace.
|
|
print network_time(), c$id;
|
|
}
|
|
|