aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-06-13 16:36:47 +0200
committerKim Alvefur <zash@zash.se>2017-06-13 16:36:47 +0200
commit1bc7fc65876926467363f8436a9edb65a8d59f5d (patch)
tree59e70424f0024537ff1bf358520a87ef28f04af4 /net
parent1114d2d04668656c5812d46fcfa437f65db6f6ba (diff)
downloadprosody-1bc7fc65876926467363f8436a9edb65a8d59f5d.tar.gz
prosody-1bc7fc65876926467363f8436a9edb65a8d59f5d.zip
net.dns: Prevent answers from immediately expiring even if TTL=0 (see #919)
Diffstat (limited to 'net')
-rw-r--r--net/dns.lua2
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]];