关于获取本机所在局域网IP地址的方法

发布于 2019-07-14 16:07:13

require "socket"
local s = socket.udp()
s:setpeername("114.114.114.114",80)
local ip, _ = s:getsockname()
notifyMessage(ip) 获取局域网IP地址

4 条评论

发布
问题