# HG changeset patch # User Kim Alvefur # Date 1539354379 -7200 # Node ID 183ff7a8051bac744abad053f2ef6f5de3639f07 # Parent 4ac3103787cc7a728bb65e2215fc8bf0b2a64ed0 net.server_epoll: Add support for the conn_type argument to addclient diff -r 4ac3103787cc -r 183ff7a8051b net/server_epoll.lua --- 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);