net.dns: Correctly apply lower bound of RTT (thanks Ge0rG)

This commit is contained in:
Kim Alvefur 2017-09-24 01:04:56 +02:00
parent 9bb6847d26
commit 11402a46bb

View file

@ -504,7 +504,7 @@ function resolver:rr() -- - - - - - - - - - - - - - - - - - - - - - - - rr
rr.ttl = 0x10000*self:word() + self:word();
rr.rdlength = self:word();
rr.tod = self.time + math.min(rr.ttl, 1);
rr.tod = self.time + math.max(rr.ttl, 1);
local remember = self.offset;
local rr_parser = self[dns.type[rr.type]];