mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Simplify expiry calculation (fixes #919)
This commit is contained in:
parent
02fb1f6f66
commit
1b616a9320
1 changed files with 2 additions and 8 deletions
10
net/dns.lua
10
net/dns.lua
|
@ -137,9 +137,7 @@ local function prune(rrs, time, soft) -- - - - - - - - - - - - - - - prune
|
|||
time = time or socket.gettime();
|
||||
for i,rr in ipairs(rrs) do
|
||||
if rr.tod then
|
||||
-- rr.tod = rr.tod - 50 -- accelerated decripitude
|
||||
rr.ttl = math.floor(rr.tod - time);
|
||||
if rr.ttl <= 0 then
|
||||
if rr.tod < time then
|
||||
rrs[rr[rr.type:lower()]] = nil;
|
||||
table.remove(rrs, i);
|
||||
return prune(rrs, time, soft); -- Re-iterate
|
||||
|
@ -515,11 +513,7 @@ function resolver:rr() -- - - - - - - - - - - - - - - - - - - - - - - - rr
|
|||
rr.ttl = 0x10000*self:word() + self:word();
|
||||
rr.rdlength = self:word();
|
||||
|
||||
if rr.ttl <= 0 then
|
||||
rr.tod = self.time + 30;
|
||||
else
|
||||
rr.tod = self.time + rr.ttl;
|
||||
end
|
||||
rr.tod = self.time + rr.ttl;
|
||||
|
||||
local remember = self.offset;
|
||||
local rr_parser = self[dns.type[rr.type]];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue