函数:getVPNStatus 获取 VPN 状态
函数名称:获取 VPN 状态
函数功能:用于获取 VPN 当前连接状态并返回一个 table
引擎版本:iOS v2.3.6,Android v2.0.5 以上
函数方法
flag = getVPNStatus()
返回值 | 类型 | 说明 |
---|---|---|
flag.active | boolean | true - 打开;false - 关闭 |
flag.status | string | 连接状态本地化字符串,不同语言下字符串不同(仅支持 iOS) |
函数用例
flag = getVPNStatus()
if flag.active then
dialog("打开状态"..flag.status)-- flag.status 仅支持 iOS 系统
else
dialog("关闭状态"..flag.status)--flag.status 仅支持 iOS 系统
end
注意事项
- 如系统中没有已经建立好的 VPN 连接,调用此函数将不会产生任何效果。
- 安卓没有 flag.status 字段。