Skip to content
Snippets Groups Projects
Verified Commit 76f742a3 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

pcap: make processing scripts more robust to errors

parent 48cb8387
No related branches found
No related tags found
1 merge request!27ui: allow traffic mixing
Pipeline #75764 passed
......@@ -220,6 +220,10 @@ while true do
end
end
if now_ms == nil then
log:fatal("no valid packets found")
end
chunk_finalize()
if args.duration ~= math.huge and not args.keep then
......
......@@ -150,15 +150,23 @@ local function is_dnsq(obj)
return true
end
local npackets = 0
local obj
while true do
obj = produce(pctx)
if obj == nil then break end
if is_dnsq(obj) then
write(writectx, obj)
npackets = npackets + 1
end
end
if args.write ~= "" then
output:close()
end
if npackets == 0 then
log:fatal("no packets were matched by filter!")
else
log:notice(string.format("%d packets matched filter", npackets))
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment