net.resolvers: Remove FIXMEs obsoleted by switch to libunbound

This commit is contained in:
Kim Alvefur 2020-06-25 19:24:58 +02:00
parent 8646a54bea
commit 300a9a56c5
2 changed files with 0 additions and 5 deletions

View file

@ -8,8 +8,6 @@ local methods = {};
local resolver_mt = { __index = methods };
-- FIXME RFC 6724
-- 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()

View file

@ -4,9 +4,6 @@ local inet_pton = require "util.net".pton;
local idna_to_ascii = require "util.encodings".idna.to_ascii;
local unpack = table.unpack or unpack; -- luacheck: ignore 113
-- FIXME #1428 Reuse DNS resolver object (pass to basic resorver)
-- FIXME #1429 Close DNS resolver object when done
local methods = {};
local resolver_mt = { __index = methods };