mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
net.dns: Don't expire records with TTL of 0 instantly
This commit is contained in:
parent
22cd9aadf6
commit
1d89d7c92c
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,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;
|
||||
if rr.ttl <= 0 then rr.tod = self.time + 30;
|
||||
else rr.tod = self.time + rr.ttl end
|
||||
|
||||
local remember = self.offset
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue