Software /
code /
prosody
Comparison
net/resolvers/basic.lua @ 10945:2edb72ef312a
net.connect: Remove TODO about use_ipv4/6 done in 3bfb20be844c
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 22 Jun 2020 01:42:18 +0200 |
parent | 10626:26fb44b61a17 |
child | 10970:4603697aee50 |
comparison
equal
deleted
inserted
replaced
10944:cb52cb8aa706 | 10945:2edb72ef312a |
---|---|
5 local unpack = table.unpack or unpack; -- luacheck: ignore 113 | 5 local unpack = table.unpack or unpack; -- luacheck: ignore 113 |
6 | 6 |
7 local methods = {}; | 7 local methods = {}; |
8 local resolver_mt = { __index = methods }; | 8 local resolver_mt = { __index = methods }; |
9 | 9 |
10 -- TODO Respect use_ipv4, use_ipv6 | |
11 -- FIXME RFC 6724 | 10 -- FIXME RFC 6724 |
12 -- FIXME #1428 Reuse DNS resolver object (from service resolver) | 11 -- FIXME #1428 Reuse DNS resolver object (from service resolver) |
13 -- FIXME #1429 Close DNS resolver object when done | 12 -- FIXME #1429 Close DNS resolver object when done |
14 | 13 |
15 -- Find the next target to connect to, and | 14 -- Find the next target to connect to, and |