Skip to content
Snippets Groups Projects
Commit 483f8b2e authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !836: sandbox: fix missing default class in resolve() function

parents 89bc4d30 9a330b9a
No related branches found
No related tags found
1 merge request!836sandbox: fix missing default class in resolve() function
Pipeline #49926 failed
......@@ -60,12 +60,14 @@ worker.resolve = function (qname, qtype, qclass, options, finish, init)
if type(qname) == 'table' then
local t = qname
qname = t.name
qtype = t.type or kres.type.A
qclass = t.class or kres.class.IN
qtype = t.type
qclass = t.class
options = t.options
finish = t.finish
init = t.init
end
qtype = qtype or kres.type.A
qclass = qclass or kres.class.IN
options = kres.mk_qflags(options)
-- LATER: nicer errors for rubbish in qname, qtype, qclass?
local pkt = ffi.C.worker_resolve_mk_pkt(qname, qtype, qclass, options)
......
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