如何检查套接字客户端-服务器是否在同一网络上?

发布于 2024-09-12 08:25:36 字数 122 浏览 8 评论 0原文

我正在使用套接字,为此我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

迷你仙 2024-09-19 08:25:36

您需要知道客户端的子网掩码才能进行此类比较。套接字不会公开该信息,因此您必须直接询问操作系统(例如,在 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() or GetAdapterAddresses()). 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.

娇女薄笑 2024-09-19 08:25:36

“同一网络”是什么意思?您可以模仿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.

芸娘子的小脾气 2024-09-19 08:25:36

感谢点击,为了解决我的情况,我只需要验证主机是否是本地主机。

解决办法:

function IsLocalHost(AHost : string) : Boolean;
var
  LStrRegexRedeLocal : string;
begin
  if LowerCase(AHost) = 'localhost' then
    result := True
  else
  begin
    LStrRegexRedeLocal := '(^10\.)|(^172\.1[6-9]\.)|(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^192\.168\.)|(^127\.0\.0\.1)';
    result := ExecRegExpr(LStrRegexRedeLocal, AHost);
  end;
end;

Tks for hits, to solve my case I just needed to verify if the host is a local host or not.

The solution:

function IsLocalHost(AHost : string) : Boolean;
var
  LStrRegexRedeLocal : string;
begin
  if LowerCase(AHost) = 'localhost' then
    result := True
  else
  begin
    LStrRegexRedeLocal := '(^10\.)|(^172\.1[6-9]\.)|(^172\.2[0-9]\.)|(^172\.3[0-1]\.)|(^192\.168\.)|(^127\.0\.0\.1)';
    result := ExecRegExpr(LStrRegexRedeLocal, AHost);
  end;
end;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文