net.dns: Support for parsing PTR records

This commit is contained in:
Matthew Wild 2010-10-06 00:13:24 +01:00
parent 0f6754746c
commit 26cf54ee8b

View file

@ -438,6 +438,9 @@ function resolver:SRV(rr) -- - - - - - - - - - - - - - - - - - - - - - SRV
rr.srv.target = self:name();
end
function resolver:PTR(rr)
rr.ptr = self:name();
end
function SRV_tostring(rr) -- - - - - - - - - - - - - - - - - - SRV_tostring
local s = rr.srv;