aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-11-26 00:12:51 +0100
committerKim Alvefur <zash@zash.se>2019-11-26 00:12:51 +0100
commite8f099babcb585312a64d604e4c79f003c3b562b (patch)
tree2743a355dde4a8f7e1c3b56712260e97bd10902f /net
parent47fd3433fc4ac4d203d2ae9c045e2c5e4356a4f2 (diff)
downloadprosody-e8f099babcb585312a64d604e4c79f003c3b562b.tar.gz
prosody-e8f099babcb585312a64d604e4c79f003c3b562b.zip
net.connect: Add some TODO comments
Diffstat (limited to 'net')
-rw-r--r--net/connect.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/net/connect.lua b/net/connect.lua
index d4de6fb4..0e11bd3e 100644
--- a/net/connect.lua
+++ b/net/connect.lua
@@ -2,6 +2,10 @@ local server = require "net.server";
local log = require "util.logger".init("net.connect");
local new_id = require "util.id".short;
+-- TODO Respect use_ipv4, use_ipv6
+-- FIXME Error propagation from resolvers doesn't work
+-- TODO Try to share DNS resolver object and close it afterwards
+
local pending_connection_methods = {};
local pending_connection_mt = {
__name = "pending_connection";