mirror of
https://github.com/lunarmodules/luasocket.git
synced 2024-12-26 12:28:21 +01:00
socket.connect() loops over addresses returned by getaddrinfo
This commit is contained in:
parent
f960b3872a
commit
966642f76a
@ -19,21 +19,31 @@ function connect(address, port, laddress, lport)
|
||||
if address == "*" then address = "0.0.0.0" end
|
||||
local addrinfo, err = socket.dns.getaddrinfo(address);
|
||||
if not addrinfo then return nil, err end
|
||||
local sock, err;
|
||||
if addrinfo[1].family == "inet" then
|
||||
local err = "no info on address"
|
||||
local sock, res
|
||||
for i, alt in base.ipairs(addrinfo) do
|
||||
if alt.family == "inet" then
|
||||
sock, err = socket.tcp()
|
||||
else
|
||||
sock, err = socket.tcp6()
|
||||
end
|
||||
if not sock then return nil, err end
|
||||
if laddress then
|
||||
local res, err = sock:bind(laddress, lport, -1)
|
||||
if not res then return nil, err end
|
||||
res, err = sock:bind(laddress, lport)
|
||||
if not res then
|
||||
sock:close()
|
||||
return nil, err
|
||||
end
|
||||
local res, err = sock:connect(address, port)
|
||||
if not res then return nil, err end
|
||||
end
|
||||
res, err = sock:connect(alt.addr, port)
|
||||
if not res then
|
||||
sock:close()
|
||||
else
|
||||
return sock
|
||||
end
|
||||
end
|
||||
return nil, err
|
||||
end
|
||||
|
||||
function bind(host, port, backlog)
|
||||
if host == "*" then host = "0.0.0.0" end
|
||||
|
Loading…
Reference in New Issue
Block a user