mirror of
https://github.com/zeek/zeek.git
synced 2025-10-03 07:08:19 +00:00

Now that it's loaded in bare mode, no need to load it explicitly. The main thing that tests were relying on seems to be tracking of c$service for conn.log baselines. Very few were actually checking for dpd.log
13 lines
352 B
Text
13 lines
352 B
Text
# @TEST-EXEC: zeek -b -r $TRACES/tcp/miss_end_data.pcap %INPUT >out
|
|
# @TEST-EXEC: btest-diff out
|
|
# @TEST-EXEC: btest-diff conn.log
|
|
|
|
@load base/protocols/conn
|
|
@load base/protocols/http
|
|
|
|
redef report_gaps_for_partial = T;
|
|
|
|
event content_gap(c: connection, is_orig: bool, seq: count, length: count)
|
|
{
|
|
print "content_gap", c$id, is_orig, seq, length;
|
|
}
|