Getting the IP Address of a Remote Socket Endpoint

后端 未结 4 520
温柔的废话
温柔的废话 2020-12-03 00:58

How do I determine the remote IP Address of a connected socket?

I have a RemoteEndPoint object I can access and well as its AddressFamily member.

How do I ut

4条回答
  •  既然无缘
    2020-12-03 01:31

    I've made this code in VB.NET but you can translate. Well pretend you have the variable Client as a TcpClient

    Dim ClientRemoteIP As String = Client.Client.RemoteEndPoint.ToString.Remove(Client.Client.RemoteEndPoint.ToString.IndexOf(":"))
    

    Hope it helps! Cheers.

提交回复
热议问题