net.connect: Add some TODOs and FIXMEs

And mention issue numbers: #1246, #1428 and #1429
This commit is contained in:
Kim Alvefur 2019-12-07 17:05:00 +01:00
parent 2d5eaff749
commit 40ffc88bad
3 changed files with 10 additions and 1 deletions

View file

@ -7,6 +7,10 @@ local unpack = table.unpack or unpack; -- luacheck: ignore 113
local methods = {};
local resolver_mt = { __index = methods };
-- TODO Respect use_ipv4, use_ipv6
-- FIXME #1428 Reuse DNS resolver object (from service resolver)
-- FIXME #1429 Close DNS resolver object when done
-- Find the next target to connect to, and
-- pass it to cb()
function methods:next(cb)