mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
net.dns: Correctly apply lower bound of RTT (thanks Ge0rG)
This commit is contained in:
parent
9bb6847d26
commit
11402a46bb
1 changed files with 1 additions and 1 deletions
|
@ -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]];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue