Skip to content
Snippets Groups Projects
Commit e94d92c3 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Merge branch 'ddns_forward_tsig' into 'master'

Ddns forward tsig

See merge request !689
parents cdafd5e5 7205c844
Branches
Tags
1 merge request!689Ddns forward tsig
Pipeline #2509 passed with stages
in 12 minutes and 51 seconds
......@@ -700,7 +700,6 @@ static int check_rr_constraints(knot_pkt_t *pkt, knot_rrset_t *rr, size_t rr_siz
pkt->size -= rr_size;
pkt->tsig_wire.pos = pkt->wire + pkt->parsed;
pkt->tsig_wire.len = rr_size;
knot_wire_set_id(pkt->wire, knot_tsig_rdata_orig_id(rr));
knot_wire_set_arcount(pkt->wire, knot_wire_get_arcount(pkt->wire) - 1);
}
break;
......
......@@ -546,6 +546,9 @@ static int check_digest(const knot_rrset_t *tsig_rr,
memset(wire_to_sign, 0, size);
memcpy(wire_to_sign, wire, size);
// restore message ID to which the signature had been created with
knot_wire_set_id(wire_to_sign, knot_tsig_rdata_orig_id(tsig_rr));
uint8_t digest_tmp[KNOT_TSIG_MAX_DIGEST_SIZE];
size_t digest_tmp_len = 0;
assert(tsig_rr->rrs.rr_count > 0);
......
......@@ -6,7 +6,7 @@ from dnstest.test import Test
t = Test()
master = t.server("bind")
master = t.server("knot")
slave = t.server("knot")
zone = t.zone("example.com.")
......
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