net/server_epoll.lua
changeset 9500 183ff7a8051b
parent 9480 0738f5276e0a
child 9501 cc593002f2e2
--- a/net/server_epoll.lua	Fri Oct 12 16:25:30 2018 +0200
+++ b/net/server_epoll.lua	Fri Oct 12 16:26:19 2018 +0200
@@ -625,14 +625,22 @@
 end
 
 -- New outgoing TCP connection
-local function addclient(addr, port, listeners, read_size, tls_ctx)
-	local n = inet_pton(addr);
-	if not n then return nil, "invalid-ip"; end
-	local create
-	if #n == 16 then
-		create = socket.tcp6 or socket.tcp;
-	else
-		create = socket.tcp4 or socket.tcp;
+local function addclient(addr, port, listeners, read_size, tls_ctx, typ)
+	local create;
+	if not typ then
+		local n = inet_pton(addr);
+		if not n then return nil, "invalid-ip"; end
+		if #n == 16 then
+			typ = "tcp6";
+		else
+			typ = "tcp4";
+		end
+	end
+	if typ then
+		create = socket[typ];
+	end
+	if type(create) ~= "function" then
+		return nil, "invalid socket type";
 	end
 	local conn, err = create();
 	conn:settimeout(0);