0

我想知道连接到我的 lua 服务器的客户端 IP,以了解连接是来自 Internet 还是 Intranet。

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?

4

1 回答 1

1

使用新补丁: ip,port = conn:getpeer() 有效。

于 2015-03-20T16:27:24.333 回答