net.connect: Add some TODO comments
authorKim Alvefur <zash@zash.se>
Tue, 26 Nov 2019 00:12:51 +0100
changeset 10456 fa11070c2cd7
parent 10455 347d16d70280
child 10457 926d6086a95a
net.connect: Add some TODO comments
net/connect.lua
--- a/net/connect.lua	Tue Nov 26 00:09:51 2019 +0100
+++ b/net/connect.lua	Tue Nov 26 00:12:51 2019 +0100
@@ -2,6 +2,10 @@
 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";