如何检查套接字客户端-服务器是否在同一网络上?
我正在使用套接字,为此我使用 TIdTCPClient 和 TIdTCPServer。 我需要检查 TIdTCPClient 连接的 TIdTCPServer 是否在同一网络上。
我该怎么做?
在。
I'm working with socket and to this I'm using TIdTCPClient and TIdTCPServer.
I need to check if the TIdTCPServer that the TIdTCPClient connected is on the same network.
How can I do this ?
at.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要知道客户端的子网掩码才能进行此类比较。套接字不会公开该信息,因此您必须直接询问操作系统(例如,在 Windows 上,您可以在
GetAdaptersInfo()
或返回的列表中查找客户端连接的本地 IP >GetAdapterAddresses()
)。获得掩码后,您可以用它来掩码客户端的 IP 和服务器的 IP,并查看结果值是否相同。You need to know the client's subnet mask in order to do that kind of comparison. Sockets do not expose that information, so you will have to ask the OS directly (for instance, on Windows, you can look for the client's connected local IP in the list returned by
GetAdaptersInfo()
orGetAdapterAddresses()
). Once you have the mask, you can then mask the client's IP and the server's IP with it and see if the resulting values are the same.“同一网络”是什么意思?您可以模仿traceroute实用程序并检查有多少跳(及其路由器地址),并与预期的进行比较。
What do you mean for "same network"? You could mimic the traceroute utility and check how many hops (with their addresses of routers) are, and compare with the expected ones.
感谢点击,为了解决我的情况,我只需要验证主机是否是本地主机。
解决办法:
Tks for hits, to solve my case I just needed to verify if the host is a local host or not.
The solution: