mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
net.dns: Prevent answers from immediately expiring even if TTL=0 (see #919)
This commit is contained in:
parent
ec9e9df9c7
commit
d3fafd4a69
1 changed files with 1 additions and 1 deletions
|
@ -513,7 +513,7 @@ function resolver:rr() -- - - - - - - - - - - - - - - - - - - - - - - - rr
|
|||
rr.ttl = 0x10000*self:word() + self:word();
|
||||
rr.rdlength = self:word();
|
||||
|
||||
rr.tod = self.time + rr.ttl;
|
||||
rr.tod = self.time + math.min(rr.ttl, 1);
|
||||
|
||||
local remember = self.offset;
|
||||
local rr_parser = self[dns.type[rr.type]];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue