当前位置:  开发笔记 > 编程语言 > 正文

您可以从System.Net.Sockets.TcpClient检索主机名和端口吗?

如何解决《您可以从System.Net.Sockets.TcpClient检索主机名和端口吗?》经验,为你挑选了1个好方法。

是否可以从新的TcpClient检索底层主机名/端口?

TcpListener listener = new TcpListener(IPAddress.Any, port);
TcpClient client = listener.AcceptTcpClient();
// get the hostname
// get the port

我在client.Client(a System.Net.Socket)中绕过,但在那里也找不到任何东西.有任何想法吗?

谢谢大家.



1> Rasmus Faber..:

未经测试,但我会尝试以下方法:

TcpListener listener = new TcpListener(IPAddress.Any, port);
TcpClient client = listener.AcceptTcpClient();

IPEndPoint endPoint = (IPEndPoint) client.Client.RemoteEndPoint;
// .. or LocalEndPoint - depending on which end you want to identify

IPAddress ipAddress = endPoint.Address;

// get the hostname
IPHostEntry hostEntry = Dns.GetHostEntry(ipAddress);
string hostName = hostEntry.HostName;

// get the port
int port = endPoint.Port;

如果您可以使用IPAddress,我会跳过反向DNS查找,但您明确要求输入主机名.

推荐阅读
小色米虫_524
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有