Skip to content
Snippets Groups Projects
Commit bfaa33b7 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

daemon/lua: use knot_pkt_section to work around ABI breakage at libknot 297a1c89

parent c7569f94
Branches
Tags
No related merge requests found
......@@ -220,6 +220,8 @@ uint16_t knot_pkt_qclass(const knot_pkt_t *pkt);
int knot_pkt_begin(knot_pkt_t *pkt, int section_id);
int knot_pkt_put_question(knot_pkt_t *pkt, const knot_dname_t *qname, uint16_t qclass, uint16_t qtype);
const knot_rrset_t *knot_pkt_rr(const knot_pktsection_t *section, uint16_t i);
const knot_pktsection_t *knot_pkt_section(const knot_pkt_t *pkt,
knot_section_t section_id);
/*
* libkres API
......@@ -301,7 +303,7 @@ ffi.metatype( knot_pkt_t, {
end,
section = function (pkt, section_id)
local records = {}
local section = pkt._sections[section_id]
local section = C.knot_pkt_section(pkt, section_id)
for i = 0, section.count - 1 do
local rrset = knot.knot_pkt_rr(section, i)
for k = 0, rrset.rr.count - 1 do
......
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