Skip to content
Snippets Groups Projects
Commit 0bbd5580 authored by Marek Vavruša's avatar Marek Vavruša Committed by Grigorii Demidov
Browse files

bindings: always set AD=1 in internal queries just like real clients

The AD indicates validation request (but not request for DNSSEC records).
If the response can't be validated, resolver flips the AD to 0.
parent c4e904e1
Branches
Tags
1 merge request!527Allow creating custom endpoints in the HTTP module
......@@ -1540,6 +1540,7 @@ static int wrk_resolve(lua_State *L)
}
knot_pkt_put_question(pkt, dname, rrclass, rrtype);
knot_wire_set_rd(pkt->wire);
knot_wire_set_ad(pkt->wire);
/* Add OPT RR */
pkt->opt_rr = knot_rrset_copy(worker->engine->resolver.opt_rr, NULL);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment