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

daemon/lua: bindings for packet sections and data

example:
local rr = pkt:section(kres.section.ANSWER)
for i = 1, #rr do
	if rr[i].type == kres.type.A then
		print(kres.dname2str(rr[i].owner))
		print(‘rdlen:’, #rr[i].rdata)
	end
end
parent a8ef9d73
Branches
Tags
No related merge requests found
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