mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.dns: Fix returning read position after zero-length name
Doesn't affect normal usage by Prosody since neither A nor AAAA records use this and SRV records has the host name last so the position is not needed.
This commit is contained in:
parent
c0be07a6b6
commit
29238183e9
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ local parsers = {};
|
|||
|
||||
-- No support for pointers, but libunbound appears to take care of that.
|
||||
local function readDnsName(packet, pos)
|
||||
if s_byte(packet, pos) == 0 then return "."; end
|
||||
if s_byte(packet, pos) == 0 then return ".", pos+1; end
|
||||
local pack_len, r, len = #packet, {};
|
||||
pos = pos or 1;
|
||||
repeat
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue