net.server_{select,event}: addclient: Handle missing getaddrinfo

vault/0.11
Kim Alvefur 12 years ago
parent bcb9af93c2
commit 29d3c27219
  1. 6
      net/server_event.lua
  2. 6
      net/server_select.lua

@ -742,16 +742,14 @@ do
debug "need luasec, but not available"
return nil, "luasec not found"
end
if not typ then
if getaddrinfo and not typ then
local addrinfo, err = getaddrinfo(addr)
if not addrinfo then return nil, err end
if addrinfo[1] and addrinfo[1].family == "inet6" then
typ = "tcp6"
else
typ = "tcp"
end
end
local create = socket[typ]
local create = socket[typ or "tcp"]
if type( create ) ~= "function" then
return nil, "invalid socket type"
end

@ -942,16 +942,14 @@ local addclient = function( address, port, listeners, pattern, sslctx, typ )
elseif sslctx and not has_luasec then
err = "luasec not found"
end
if not typ then
if getaddrinfo and not typ then
local addrinfo, err = getaddrinfo(address)
if not addrinfo then return nil, err end
if addrinfo[1] and addrinfo[1].family == "inet6" then
typ = "tcp6"
else
typ = "tcp"
end
end
local create = luasocket[typ]
local create = luasocket[typ or "tcp"]
if type( create ) ~= "function" then
err = "invalid socket type"
end

Loading…
Cancel
Save