我想知道连接到我的lua服务器的客户端IP,以确定连接是来自互联网还是内部网。
srv=net.createServer(net.TCP)
srv:listen(80,function(conn)
print(conn)
conn:on("receive",function(conn,payload)
ip = conn:getpeername()
print(ip)
conn:send("<h1> TEST.</h1>")
end)
conn:on("sent",function(conn) conn:close() end)
end)
我收到错误:
PANIC: unprotected error in call to Lua API (stdin:2: attempt to call method 'getpeername' (a nil value))
注意:我在esp8266芯片上使用它,我没有使用lua的经验!
如何找到连接客户端的IP?
答案 0 :(得分:1)
使用新的补丁:ip,port = conn:getpeer()可以工作。