aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
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";