3

我正在尝试使用 LuaSocket 库测试 Corona SDK 中是否存在互联网连接。

我找到了这个解决方案:

function test()           
    local connection = socket.tcp()
    connection:settimeout(1000)
    local result = connection:connect("www.google.com", 80)
    connection:close()
    if (result) then return true end
    return false
end

但它有一个问题:如果连接不好/不稳定,程序会被阻塞,直到套接字运行(不同秒)。

所以我尝试这样:

    connection:settimeout(1000, 't')

但它非常不准确(它在有一点网络延迟的地方返回错误)。有一个更好的方法?

也许使套接字不阻塞?

更新2: 我试过这段代码,但我真的不明白它是否有意义......

local socket = require("socket") 
function test(callback, timeout)
    if timeout == nil then timeout = 1000 end
    local connection = socket.tcp()
    connection:settimeout(0)
    connection:connect("www.google.com", 80)
    local t
    t = timer.performWithDelay( 10, function()
        local r = socket.select({connection}, nil, 0)
        if r[1] or timeout == 0 then
            connection:close()
            timer.cancel( t )
            callback(timeout > 0)
        end
        timeout = timeout - 10
    end , 0)
end

它总是返回“无连接”

4

2 回答 2

5

最后,我找到了一种使它适用于所有设备的方法。感谢hades2510:

---------------------------------------
-- Test connection to the internet
---------------------------------------
local socket = require("socket")

local connection = {}
local function manual_test(callback, timeout)
    if timeout == nil then timeout = 1000 end
    local connection = assert(socket.tcp())
    connection:settimeout(0)
    local result = connection:connect("www.google.com", 80)
    local t
    t = timer.performWithDelay( 10, function()
        local r, w, e = socket.select(nil, {connection}, 0)
        if w[1] or timeout == 0 then
            connection:close()
            timer.cancel( t )
            callback(timeout > 0)
        end
        timeout = timeout - 10
    end , 0)
end
local isReachable = nil
function connection.test(callback)
    if network.canDetectNetworkStatusChanges then
        if isReachable == nil then
            local function networkListener(event)
                isReachable = event.isReachable
                callback(isReachable)
            end
            network.setStatusListener( "www.google.com", networkListener )
        else
            callback(isReachable)
        end
    else
        manual_test(callback)
    end
end
return connection

https://gist.github.com/ProGM/9786014

于 2014-03-26T14:52:01.470 回答
4

您可以查看network.setStatusListener

您不能将 IP 地址与它一起使用,但您似乎并不关心这一点。

于 2014-03-26T13:15:41.167 回答