如何在Lua Sockets中获取客户端IP
我无法找到如何使用 LuaSockets 获取每个客户端连接到我的服务器时的 IP 地址; 另外:如果这个问题已在另一篇文章中得到回答,我深表歉意,但我可以找到它;如果是这种情况,请联系我。
干杯!
I'm having trouble locating how I go about getting the ip address of each client as they connect to my server, using LuaSockets;
Also: I apologise if this has been answered in another post, but I could find it; Link me if this is the case.
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用conn:getpeername(),它返回客户端的主机和端口。
Use
conn:getpeername()
, it returns host and port of the client.getpeername 应该可以。
getpeername should work.