diff options
author | Kim Alvefur <zash@zash.se> | 2019-12-07 17:05:00 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-12-07 17:05:00 +0100 |
commit | 40ffc88bad91782bf8564994826b528609004751 (patch) | |
tree | 661936621e69aff3b5fcc127d81e09c71b616bcc /net/connect.lua | |
parent | 2d5eaff749da055df6a29f20a169759f0bc96479 (diff) | |
download | prosody-40ffc88bad91782bf8564994826b528609004751.tar.gz prosody-40ffc88bad91782bf8564994826b528609004751.zip |
net.connect: Add some TODOs and FIXMEs
And mention issue numbers: #1246, #1428 and #1429
Diffstat (limited to 'net/connect.lua')
-rw-r--r-- | net/connect.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/connect.lua b/net/connect.lua index 0e11bd3e..fe70ce36 100644 --- a/net/connect.lua +++ b/net/connect.lua @@ -3,8 +3,10 @@ local log = require "util.logger".init("net.connect"); local new_id = require "util.id".short; -- TODO Respect use_ipv4, use_ipv6 +-- TODO #1246 Happy Eyeballs -- FIXME Error propagation from resolvers doesn't work --- TODO Try to share DNS resolver object and close it afterwards +-- FIXME #1428 Reuse DNS resolver object between service and basic resolver +-- FIXME #1429 Close DNS resolver object when done local pending_connection_methods = {}; local pending_connection_mt = { |