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
commitd3fafd4a697ba5d8f1d6a00f81edce52931635f5 (patch)
tree59e70424f0024537ff1bf358520a87ef28f04af4 /net
parentec9e9df9c7cb152c83fc3a2adf40228443cf1799 (diff)
downloadprosody-d3fafd4a697ba5d8f1d6a00f81edce52931635f5.tar.gz
prosody-d3fafd4a697ba5d8f1d6a00f81edce52931635f5.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]];