diff options
author | Kim Alvefur <zash@zash.se> | 2017-06-13 16:36:47 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-06-13 16:36:47 +0200 |
commit | 6f1020550628c90495e29d33a8952850d0e0ce83 (patch) | |
tree | 59e70424f0024537ff1bf358520a87ef28f04af4 /net/dns.lua | |
parent | 17b14b71b59bf9db3eb49364a34aa7e35f68857b (diff) | |
download | prosody-6f1020550628c90495e29d33a8952850d0e0ce83.tar.gz prosody-6f1020550628c90495e29d33a8952850d0e0ce83.zip |
net.dns: Prevent answers from immediately expiring even if TTL=0 (see #919)
Diffstat (limited to 'net/dns.lua')
-rw-r--r-- | net/dns.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dns.lua b/net/dns.lua index 5e29e906..0d6a828c 100644 --- a/net/dns.lua +++ b/net/dns.lua @@ -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]]; |