Skip to content
Snippets Groups Projects
Unverified Commit 3316fe6a authored by Petr Špaček's avatar Petr Špaček
Browse files

filter-dnsq: remove obsolete null output

output.null was removed from dnsjit, but users can use /dev/null
if needed so there is no need to complicate code with extra conditions.
parent 186b2dfa
No related branches found
No related tags found
1 merge request!60detect PCAP write errors
......@@ -18,7 +18,7 @@ local log = require("dnsjit.core.log").new("filter-dnsq.lua")
local getopt = require("dnsjit.lib.getopt").new({
{ "r", "read", "", "input file to read", "?" },
{ "i", "interface", "", "capture interface", "?" },
{ "w", "write", "", "output file to write", "?" },
{ "w", "write", "", "output file to write (or /dev/null)", "?" },
{ "p", "port", 53, "destination port to check for UDP DNS queries", "?" },
{ "m", "malformed", false, "include malformed queries", "?" },
{ "M", "only-malformed", false, "include only malformed queries", "?" },
......@@ -99,8 +99,7 @@ local produce, pctx = layer:produce()
-- Set up output
if args.write == "" then
log:notice("no output specified, only counting packets")
output = require("dnsjit.output.null").new()
log:fatal("output must be specified, use -w; use /dev/null if you want just counters")
elseif output:open(args.write, input:linktype(), input:snaplen()) ~= 0 then
log:fatal("failed to open output PCAP "..args.write)
else
......@@ -173,9 +172,7 @@ while true do
end
end
if args.write ~= "" then
output:close()
end
output:close()
if npackets_out == 0 then
log:fatal("no packets were matched by filter!")
......
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